mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +00:00
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);
|
|
}
|