Retro68/gcc/newlib/libc/syscalls/systimes.c
Wolfgang Thaller d464252791 re-add newlib
2017-04-11 23:13:36 +02:00

12 lines
159 B
C

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