home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ANews 3
/
AnewsCD3.iso
/
DP
/
Programmation
/
GCC
/
gcc_include
/
sys
/
times.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-03-08
|
266 b
|
20 lines
/* system times for ansic.library */
/* (c)Copyright 1992 Davide Pasetto */
#ifndef _SYS_TIMES_H
#define _SYS_TIMES_H
/* #include <sys/time.h> */
struct tms {
unsigned long tms_utime;
unsigned long tms_stime;
};
#define HZ 50
#endif /* _SYS_TIMES_H */