File: ksh_times.h

package info (click to toggle)
pdksh 5.2.14-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,832 kB
  • ctags: 2,272
  • sloc: ansic: 23,599; perl: 945; makefile: 595; sh: 280; sed: 40
file content (18 lines) | stat: -rw-r--r-- 413 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef KSH_TIMES_H
# define KSH_TIMES_H

/* Needed for clock_t on some systems (ie, NeXT in non-posix mode) */
#include "ksh_time.h"

#include <sys/times.h>

#ifdef TIMES_BROKEN
extern clock_t	ksh_times ARGS((struct tms *));
#else /* TIMES_BROKEN */
# define ksh_times times
#endif /* TIMES_BROKEN */

#ifdef HAVE_TIMES
extern clock_t	times ARGS((struct tms *));
#endif /* HAVE_TIMES */
#endif /* KSH_TIMES_H */