xref: /netbsd-src/lib/libc/compat/gen/compat_times.c (revision 8b0f9554ff8762542c4defc4f70e1eb76fb508fa)
1 /*	$NetBSD: compat_times.c,v 1.1 2005/09/13 01:44:09 christos Exp $	*/
2 
3 /*
4  * Ben Harris, 2002.
5  * This file is in the Public Domain.
6  */
7 
8 #define __LIBC12_SOURCE__
9 #include "namespace.h"
10 #include <sys/cdefs.h>
11 #include <time.h>
12 #include <compat/include/time.h>
13 #include <sys/times.h>
14 #include <compat/sys/times.h>
15 
16 #ifdef __weak_alias
17 __weak_alias(times,_times)
18 #endif
19 
20 __warn_references(times,
21     "warning: reference to compatibility times(); include <sys/times.h> for correct reference")
22 
23 
24 #include "gen/times.c"
25