root/include/asm-i386/types.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _I386_TYPES_H
   2 #define _I386_TYPES_H
   3 
   4 /*
   5  * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
   6  * header files exported to user space
   7  */
   8 
   9 typedef signed char __s8;
  10 typedef unsigned char __u8;
  11 
  12 typedef signed short __s16;
  13 typedef unsigned short __u16;
  14 
  15 typedef signed long __s32;
  16 typedef unsigned long __u32;
  17 
  18 #ifndef __STRICT_ANSI__
  19 typedef signed long long __s64;
  20 typedef unsigned long long __u64;
  21 #endif
  22 
  23 /*
  24  * These aren't exported outside the kernel to avoid name space clashes
  25  */
  26 #ifdef __KERNEL__
  27 
  28 typedef signed char s8;
  29 typedef unsigned char u8;
  30 
  31 typedef signed short s16;
  32 typedef unsigned short u16;
  33 
  34 typedef signed long s32;
  35 typedef unsigned long u32;
  36 
  37 typedef signed long long s64;
  38 typedef unsigned long long u64;
  39 
  40 #endif /* __KERNEL__ */
  41 
  42 #endif

/* [previous][next][first][last][top][bottom][index][help] */