Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
time
times.c
pretty
plain
permalink
blame
history
•
7 lines
•
115 B
1
#include <sys/times.h>
2
#include "syscall.h"
3
4
clock_t times(struct tms *tms)
5
{
6
	return __syscall(SYS_times, tms);
7
}