~mysql/mysql-server/mysql-6.0

« back to all changes in this revision

Viewing changes to mit-pthreads/machdep/sunos-5.5/__stdlib.h

  • Committer: bk at mysql
  • Date: 2000-07-31 19:29:14 UTC
  • Revision ID: sp1r-bk@work.mysql.com-20000731192914-08846
Import changeset

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef _SYS___STDLIB_H_
 
3
#define _SYS___STDLIB_H_
 
4
 
 
5
#include <sys/feature_tests.h>
 
6
 
 
7
#ifndef _SIZE_T
 
8
#define _SIZE_T
 
9
typedef unsigned int    size_t;
 
10
#endif
 
11
 
 
12
#ifndef _UID_T
 
13
#define _UID_T
 
14
typedef long    uid_t;
 
15
#endif
 
16
 
 
17
#ifndef NULL
 
18
#define NULL    0
 
19
#endif
 
20
 
 
21
#ifndef _WCHAR_T
 
22
#define _WCHAR_T
 
23
typedef long wchar_t;
 
24
#endif
 
25
 
 
26
 
 
27
#endif