1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- * This file is part of the UCB release of Plan 9. It is subject to the license
- * terms in the LICENSE file found in the top-level directory of this
- * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
- * part of the UCB release of Plan 9, including this file, may be copied,
- * modified, propagated, or distributed except according to the terms contained
- * in the LICENSE file.
- */
- #define nil ((void*)0)
- typedef unsigned short ushort;
- typedef unsigned char uchar;
- typedef unsigned long ulong;
- typedef unsigned int uint;
- typedef signed char schar;
- typedef long long vlong;
- typedef unsigned long long uvlong;
- typedef unsigned long uintptr;
- typedef unsigned long usize;
- typedef uint Rune;
- typedef union FPdbleword FPdbleword;
- typedef long jmp_buf[2];
- #define JMPBUFSP 0
- #define JMPBUFPC 1
- #define JMPBUFDPC (-8)
- 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;
- /* FCR */
- #define FPINEX (1<<23)
- #define FPOVFL (1<<26)
- #define FPUNFL (1<<25)
- #define FPZDIV (1<<24)
- #define FPRNR (0<<30)
- #define FPRZ (1<<30)
- #define FPINVAL (1<<27)
- #define FPRPINF (2<<30)
- #define FPRNINF (3<<30)
- #define FPRMASK (3<<30)
- #define FPPEXT 0
- #define FPPSGL 0
- #define FPPDBL 0
- #define FPPMASK 0
- /* FSR */
- #define FPAINEX (1<<5)
- #define FPAZDIV (1<<6)
- #define FPAUNFL (1<<7)
- #define FPAOVFL (1<<8)
- #define FPAINVAL (1<<9)
- union FPdbleword
- {
- double x;
- struct { /* big endian */
- uint32_t hi;
- uint32_t lo;
- };
- };
- 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)?\
- ((list += 4), (mode*)list)[-1]:\
- (sizeof(mode) == 2)?\
- ((list += 4), (mode*)list)[-1]:\
- ((list += sizeof(mode)), (mode*)list)[-1])
|