8 lines
137 B
C
8 lines
137 B
C
|
#ifndef _SIZE_T_H_
|
||
|
#define _SIZE_T_H_
|
||
|
|
||
|
typedef unsigned long size_t;
|
||
|
typedef signed long ssize_t;
|
||
|
|
||
|
#endif /* _SIZE_T_H_ */
|