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

times.c « rdos « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47a540b2383dcfd8949b169be975ea98da7d5515 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <sys/times.h>
#include <errno.h>

clock_t times(struct tms *buf)
{
  errno = ENOSYS;
  return -1;
}