libc/newlib/libc/syscalls/systimes.c
Yaakov Selkowitz 9087163804 ansification: remove _DEFUN
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:26 -06: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);
}