26 lines
371 B
C
26 lines
371 B
C
/*
|
|
* Stub version of gettimeofday.
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include <_ansi.h>
|
|
#include <_syslist.h>
|
|
#include <sys/time.h>
|
|
#include <sys/times.h>
|
|
#include <errno.h>
|
|
#undef errno
|
|
extern int errno;
|
|
#include "warning.h"
|
|
|
|
struct timeval;
|
|
|
|
int
|
|
_gettimeofday (struct timeval *ptimeval,
|
|
void *ptimezone)
|
|
{
|
|
errno = ENOSYS;
|
|
return -1;
|
|
}
|
|
|
|
stub_warning(_gettimeofday)
|