commit | 96b05c1cc252cbd1582be4b8c554e72024938f3c | [log] [tgz] |
---|---|---|
author | Viet-Trung Luu <viettrungluu@chromium.org> | Mon Jan 11 11:26:36 2016 -0800 |
committer | Viet-Trung Luu <viettrungluu@chromium.org> | Mon Jan 11 11:26:36 2016 -0800 |
tree | 0a5c627bf2c4750d4428f87d894257a00dccda1c | |
parent | 66269650afe77c016cd33903e5d02ea05d879660 [diff] [blame] |
Add a "fork" of musl as //fusl. This is musl verbatim at d5f8394f6ea9549607567bd92de12a2446c15614. See http://www.musl-libc.org/. R=kulakowski@chromium.org Review URL: https://codereview.chromium.org/1573973002 .
diff --git a/fusl/src/time/times.c b/fusl/src/time/times.c new file mode 100644 index 0000000..c4a100f --- /dev/null +++ b/fusl/src/time/times.c
@@ -0,0 +1,7 @@ +#include <sys/times.h> +#include "syscall.h" + +clock_t times(struct tms *tms) +{ + return __syscall(SYS_times, tms); +}