home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 May
/
W2KPRK.iso
/
apps
/
posix
/
source
/
SH
/
STD
/
POSIX
/
IO.H
< prev
next >
Wrap
C/C++ Source or Header
|
1999-11-17
|
1KB
|
15 lines
/* work around multiple typedefs in stddef.h and sys/types.h */
#include <stddef.h> /* defines size_t and ptrdiff_t */
#include <time.h> /* defines time_t and clock_t */
/* "inhibit" the typedefs in sys/types.h */
#define size_t _size_t
#define time_t _time_t
#define clock_t _clock_t
#include "/./usr/include/sys/types.h"
#undef size_t
#undef time_t
#undef clock_t