mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
9087163804
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
11 lines
139 B
C
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);
|
|
}
|