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: ecd958348011dde8fe143ee7849d448ac7753904 (plain)
1
2
3
4
5
6
7
8
9
10
/* connector for times */

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

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