only use memcpy realloc to shrink if an exact-sized free chunk exists
[oweals/musl.git] / src / time / times.c
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 }