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  * These aren't exported outside the kernel to avoid name space clashes
   6  */
   7 #ifdef __KERNEL__
   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 #endif /* __KERNEL__ */
  22 
  23 #endif

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