Fix mdoc(7)/man(7) mix up.
[netbsd-mini2440.git] / lib / libc / compat / gen / compat_time.c
blob608a6f83ae4d6b69df00065db83fe2c0acb650f6
1 /* $NetBSD: compat_time.c,v 1.1.2.2 2008/11/23 21:41:57 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
27 #include "gen/time.c"