Remove building with NOCRYPTO option
[minix3.git] / lib / libc / compat / gen / compat_time.c
blob7bb93e57c7e3f1126deff91d08baf5c5aa2b17ff
1 /* $NetBSD: compat_time.c,v 1.4 2013/10/04 21:07:37 christos Exp $ */
3 /*
4 * Written by Jason R. Thorpe <thorpej@NetBSD.org>, October 21, 1997.
5 * Public domain.
6 */
8 #include "namespace.h"
9 #include <sys/cdefs.h>
11 #define __LIBC12_SOURCE__
12 #include <time.h>
13 #include <sys/time.h>
14 #include <compat/include/time.h>
15 #include <compat/sys/time.h>
17 #ifdef __weak_alias
18 __weak_alias(time,_time)
19 #endif
21 __warn_references(time,
22 "warning: reference to compatibility time();"
23 " include <time.h> for correct reference")
25 #define timeval timeval50
26 #define time_t int32_t
28 #define gettimeofday __compat_gettimeofday
30 #include "gen/time.c"