home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 May
/
W2KPRK.iso
/
apps
/
posix
/
source
/
SH
/
STD
/
POSIX
/
TIMES.H
< prev
next >
Wrap
C/C++ Source or Header
|
1999-11-17
|
355b
|
29 lines
/*
* sys/times.h: POSIX times()
*/
#if ! _TIMES_H
#define _TIMES_H 1
#include <time.h> /* defines CLK_TCK */
#if __STDC__
#define ARGS(args) args
#else
#define ARGS(args) ()
#endif
struct tms {
clock_t tms_utime, tms_stime;
clock_t tms_cutime, tms_cstime;
};
#if _V7
#define times times_
#endif
clock_t times ARGS((struct tms *tmsp));
#endif