minix/lib/nbsd_libc/sys-minix/settimeofday.c
Gianluca Guida 4f294c247f Add NBSDLibc Minix specific files.
This patch mainly copies and modifies files existing in
the current libc implementing minix specific functions.

To keep consisten with the NetBSD libc, we remove 
namespace stubs and we use "namespace.h" and weak
links.
2011-02-17 17:11:09 +00:00

16 lines
309 B
C

#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);
}