summaryrefslogtreecommitdiff
path: root/mit-pthreads/machdep/sunos-5.5/__stdlib.h
blob: a0717ce3c2b5eea47ac45e2ab3c05a78ffa611db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

#ifndef	_SYS___STDLIB_H_
#define	_SYS___STDLIB_H_

#include <sys/feature_tests.h>

#ifndef _SIZE_T
#define _SIZE_T
typedef unsigned int    size_t;
#endif

#ifndef _UID_T
#define _UID_T
typedef long    uid_t;
#endif

#ifndef NULL
#define NULL    0
#endif

#ifndef _WCHAR_T
#define _WCHAR_T
typedef long wchar_t;
#endif


#endif