Remove building with NOCRYPTO option
[minix3.git] / bin / ksh / ksh_time.h
blob79a7b1585744e55d81a45f13714f36acd4149281
1 /* $NetBSD: ksh_time.h,v 1.2 1997/01/12 19:12:01 tls Exp $ */
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.2 1997/01/12 19:12:01 tls 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 */