Retro68/gcc/newlib/libc/syscalls/systimes.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

11 lines
139 B
C

/* connector for times */
#include <reent.h>
#include <sys/times.h>
clock_t
times (struct tms *buf)
{
return _times_r (_REENT, buf);
}