2011-03-30 13:47:56 +00:00
|
|
|
#ifndef __U_H
|
|
|
|
#define __U_H
|
|
|
|
#ifndef _PLAN9_SOURCE
|
|
|
|
This header file is an extension to ANSI/POSIX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define nil ((void*)0)
|
|
|
|
typedef unsigned short ushort;
|
|
|
|
typedef unsigned char uchar;
|
|
|
|
typedef unsigned long ulong;
|
|
|
|
typedef unsigned int uint;
|
2013-10-17 10:02:45 +00:00
|
|
|
typedef signed char schar;
|
2011-03-30 13:47:56 +00:00
|
|
|
typedef long long vlong;
|
|
|
|
typedef unsigned long long uvlong;
|
2013-10-17 10:02:45 +00:00
|
|
|
typedef uint Rune;
|
2011-03-30 13:47:56 +00:00
|
|
|
typedef union FPdbleword FPdbleword;
|
|
|
|
typedef char* p9va_list;
|
|
|
|
|
|
|
|
#endif
|