2005-06-10 17:12:03 +02:00
|
|
|
/*
|
|
|
|
settimeofday.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define stime _stime
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
int settimeofday(const struct timeval *tp, const void *tzp)
|
|
|
|
{
|
2009-12-17 09:43:31 +01:00
|
|
|
/* Use intermediate variable because stime param is not const */
|
|
|
|
time_t sec = tp->tv_sec;
|
|
|
|
|
2005-06-10 17:12:03 +02:00
|
|
|
/* Ignore time zones */
|
2009-12-17 09:43:31 +01:00
|
|
|
return stime(&sec);
|
2005-06-10 17:12:03 +02:00
|
|
|
}
|