mirror of
https://github.com/fluencelabs/musl
synced 2025-06-23 03:31:55 +00:00
8 lines
122 B
C
8 lines
122 B
C
![]() |
#include <sys/times.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
clock_t times(struct tms *tms)
|
||
|
{
|
||
|
return syscall1(__NR_times, (long)&tms);
|
||
|
}
|