summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/rdos/gettod.c
blob: b1801502daa0f7fefaabab9df5c814dae1200b16 (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, struct timezone *ptimezone)
{
  errno = ENOSYS;
  return -1;
}