1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #define nil ((void*)0)
- #define float long
- #define double long
- typedef unsigned short ushort;
- typedef unsigned char uchar;
- typedef unsigned long ulong;
- typedef unsigned int uint;
- typedef signed char schar;
- typedef long vlong;
- typedef unsigned long uvlong;
- typedef ushort Rune;
- typedef union FPdbleword FPdbleword;
- typedef long jmp_buf[2];
- typedef unsigned int mpdigit; /* for /sys/include/mp.h */
- typedef unsigned char u8int;
- typedef unsigned short u16int;
- typedef unsigned int u32int;
- typedef unsigned long long u64int;
- union FPdbleword
- {
- double x;
- struct { /* little endian */
- ulong lo;
- ulong hi;
- };
- };
- typedef char* va_list;
- #define va_start(list, start) list =\
- (sizeof(start) < 4?\
- (char*)((int*)&(start)+1):\
- (char*)(&(start)+1))
- #define va_end(list)\
- USED(list)
- #define va_arg(list, mode)\
- ((sizeof(mode) == 1)?\
- ((mode*)(list += 4))[-4]:\
- (sizeof(mode) == 2)?\
- ((mode*)(list += 4))[-2]:\
- ((mode*)(list += sizeof(mode)))[-1])
|