2000-03-17 23:48:54 +01:00
|
|
|
/*
|
|
|
|
* 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
|
2017-12-04 04:43:30 +01:00
|
|
|
_gettimeofday (struct timeval *ptimeval,
|
2007-07-06 19:00:13 +02:00
|
|
|
void *ptimezone)
|
2000-03-17 23:48:54 +01:00
|
|
|
{
|
|
|
|
errno = ENOSYS;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
stub_warning(_gettimeofday)
|