2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <lib.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
int settimeofday(const struct timeval *tp, const void *tzp)
|
|
|
|
{
|
|
|
|
/* Use intermediate variable because stime param is not const */
|
|
|
|
time_t sec = tp->tv_sec;
|
|
|
|
|
|
|
|
/* Ignore time zones */
|
|
|
|
return stime(&sec);
|
|
|
|
}
|
2013-01-07 20:10:08 +01:00
|
|
|
|
2013-01-18 00:06:11 +01:00
|
|
|
#if defined(__minix) && defined(__weak_alias)
|
2013-01-07 20:10:08 +01:00
|
|
|
__weak_alias(settimeofday, __settimeofday50)
|
|
|
|
#endif
|