u.h 430 B

12345678910111213141516171819
  1. #ifndef __U_H
  2. #define __U_H
  3. #ifndef _PLAN9_SOURCE
  4. This header file is an extension to ANSI/POSIX
  5. #endif
  6. #define nil ((void*)0)
  7. typedef unsigned short ushort;
  8. typedef unsigned char uchar;
  9. typedef unsigned long ulong;
  10. typedef unsigned int uint;
  11. typedef signed char schar;
  12. typedef long long vlong;
  13. typedef unsigned long long uvlong;
  14. typedef ushort Rune;
  15. typedef union FPdbleword FPdbleword;
  16. typedef char* p9va_list;
  17. #endif