Welcome to mirror list, hosted at ThFree Co, Russian Federation.

systimes.c « syscalls « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc30a3e3870c02e6ec69b8f08b9ecaf93701b115 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* connector for times */

#include <reent.h>
#include <sys/times.h>

clock_t
_DEFUN (times, (buf),
     struct tms *buf)
{
  return _times_r (_REENT, buf);
}