1140072Strhodes/*	$NetBSD$	*/
2140072Strhodes
3140072Strhodes#ifndef KSH_TIMES_H
4140072Strhodes# define KSH_TIMES_H
5140072Strhodes
6140072Strhodes/* Needed for clock_t on some systems (ie, NeXT in non-posix mode) */
7140072Strhodes#include "ksh_time.h"
8140072Strhodes
9140072Strhodes#include <sys/times.h>
10140072Strhodes
11140072Strhodes#ifdef TIMES_BROKEN
12140072Strhodesextern clock_t	ksh_times ARGS((struct tms *));
13140072Strhodes#else /* TIMES_BROKEN */
14140072Strhodes# define ksh_times times
15140072Strhodes#endif /* TIMES_BROKEN */
16140072Strhodes
17140072Strhodes#ifdef HAVE_TIMES
18140072Strhodesextern clock_t	times ARGS((struct tms *));
19140072Strhodes#endif /* HAVE_TIMES */
20140072Strhodes#endif /* KSH_TIMES_H */
21140072Strhodes