Do not use .Xo/.Xc to work around ancient roff limits.
[netbsd-mini2440.git] / bin / ksh / ksh_time.h
blob6f64ab78f90a3eb517a5a808817806e75d08052f
1 /* $NetBSD$ */
3 #ifndef KSH_TIME_H
4 # define KSH_TIME_H
6 /* Wrapper around the ugly time.h,sys/time.h includes/ifdefs */
7 /* $NetBSD: ksh_time.h,v 1.1.1.2 1996/10/09 15:12:44 jtc Exp $ */
9 #ifdef TIME_WITH_SYS_TIME
10 # include <sys/time.h>
11 # include <time.h>
12 #else /* TIME_WITH_SYS_TIME */
13 # ifdef HAVE_SYS_TIME_H
14 # include <sys/time.h>
15 # else
16 # include <time.h>
17 # endif
18 #endif /* TIME_WITH_SYS_TIME */
20 #ifndef TIME_DECLARED
21 extern time_t time ARGS((time_t *));
22 #endif
24 #ifndef CLK_TCK
25 # define CLK_TCK 60 /* 60HZ */
26 #endif
27 #endif /* KSH_TIME_H */