Obfuscate RCS ID matching so that CVS doesn't expand it.
[netbsd-mini2440.git] / bin / ksh / ksh_times.h
blob5b81d447c32fe8fb92ad1d93f8c1f56789d62d6b
1 /* $NetBSD$ */
3 #ifndef KSH_TIMES_H
4 # define KSH_TIMES_H
6 /* Needed for clock_t on some systems (ie, NeXT in non-posix mode) */
7 #include "ksh_time.h"
9 #include <sys/times.h>
11 #ifdef TIMES_BROKEN
12 extern clock_t ksh_times ARGS((struct tms *));
13 #else /* TIMES_BROKEN */
14 # define ksh_times times
15 #endif /* TIMES_BROKEN */
17 #ifdef HAVE_TIMES
18 extern clock_t times ARGS((struct tms *));
19 #endif /* HAVE_TIMES */
20 #endif /* KSH_TIMES_H */