blob: 7bb93e57c7e3f1126deff91d08baf5c5aa2b17ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* $NetBSD: compat_time.c,v 1.4 2013/10/04 21:07:37 christos Exp $ */
/*
* Written by Jason R. Thorpe <thorpej@NetBSD.org>, October 21, 1997.
* Public domain.
*/
#include "namespace.h"
#include <sys/cdefs.h>
#define __LIBC12_SOURCE__
#include <time.h>
#include <sys/time.h>
#include <compat/include/time.h>
#include <compat/sys/time.h>
#ifdef __weak_alias
__weak_alias(time,_time)
#endif
__warn_references(time,
"warning: reference to compatibility time();"
" include <time.h> for correct reference")
#define timeval timeval50
#define time_t int32_t
#define gettimeofday __compat_gettimeofday
#include "gen/time.c"
|