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

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

struct timeval;
struct timezone;

int gettimeofday(struct timeval *ptimeval, void *ptimezone)
{
  errno = ENOSYS;
  return -1;
}