You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
371 B

/*
* 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)