diff options
Diffstat (limited to 'lib/libc/times')
| -rw-r--r-- | lib/libc/times/times.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libc/times/times.c b/lib/libc/times/times.c new file mode 100644 index 00000000..bd850215 --- /dev/null +++ b/lib/libc/times/times.c @@ -0,0 +1,7 @@ +#include <sys/times.h> +#include <syscall.h> + +clock_t times(struct tms *buffer) +{ + return syscall(times, buffer); +} |
