Retro68/gcc/newlib/libc/sys/rdos/gettod.c
Wolfgang Thaller d464252791 re-add newlib
2017-04-11 23:13:36 +02:00

16 lines
270 B
C

#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;
}