mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
12 lines
159 B
C
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);
|
||
|
}
|