Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/planix-v0/sys/src/ape/cmd/pdksh/ksh_times.h – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#ifndef KSH_TIMES_H
2
# define KSH_TIMES_H
3
 
4
/* Needed for clock_t on some systems (ie, NeXT in non-posix mode) */
5
#include "ksh_time.h"
6
 
7
#include <sys/times.h>
8
 
9
#ifdef TIMES_BROKEN
10
extern clock_t	ksh_times ARGS((struct tms *));
11
#else /* TIMES_BROKEN */
12
# define ksh_times times
13
#endif /* TIMES_BROKEN */
14
 
15
#ifdef HAVE_TIMES
16
extern clock_t	times ARGS((struct tms *));
17
#endif /* HAVE_TIMES */
18
#endif /* KSH_TIMES_H */