16 lines
281 B
C
16 lines
281 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, struct timezone *ptimezone)
|
||
|
{
|
||
|
errno = ENOSYS;
|
||
|
return -1;
|
||
|
}
|