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: 353553be7b21d2b4382377f00cf1c15e50ef916a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* connector for times */

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

clock_t
_DEFUN (times, (buf),
     struct tms *buf)
{
#ifdef REENTRANT_SYSCALLS_PROVIDED
  return _times_r (_REENT, buf);
#else
  return _times (buf);
#endif
}