blob: b6f49ccd6bc9d715bf14c3e9d65db8c51137f3b6 [file] [log] [blame]
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08001#include <sys/times.h>
2#include "syscall.h"
3
George Kulakowski17e3b042016-02-18 15:59:50 -08004clock_t times(struct tms* tms) {
5 return __syscall(SYS_times, tms);
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08006}