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 typedef signed long long __s64;
  19 typedef unsigned long long __u64;
  20 
  21 /*
  22  * These aren't exported outside the kernel to avoid name space clashes
  23  */
  24 #ifdef __KERNEL__
  25 
  26 typedef signed char s8;
  27 typedef unsigned char u8;
  28 
  29 typedef signed short s16;
  30 typedef unsigned short u16;
  31 
  32 typedef signed long s32;
  33 typedef unsigned long u32;
  34 
  35 typedef signed long long s64;
  36 typedef unsigned long long u64;
  37 
  38 #endif /* __KERNEL__ */
  39 
  40 #endif

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