root/include/asm-sparc/types.h

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

INCLUDED FROM


   1 #ifndef _SPARC_TYPES_H
   2 #define _SPARC_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   <-- Linus sez this
   7  */
   8 
   9 /* NOTE: I will have to change these when the V9 sparcs come into play,
  10  *       however this won't be for a while.
  11  */
  12 
  13 typedef signed char __s8;
  14 typedef unsigned char __u8;
  15 
  16 typedef signed short __s16;
  17 typedef unsigned short __u16;
  18 
  19 typedef signed int __s32;
  20 typedef unsigned int __u32;
  21 
  22 /* Only 32-bit sparcs for now so.... */
  23 
  24 typedef signed long long __s64;
  25 typedef unsigned long long __s64;
  26 
  27 #ifdef __KERNEL__
  28 
  29 typedef signed char s8;
  30 typedef unsigned char u8;
  31 
  32 typedef signed short s16;
  33 typedef unsigned short u16;
  34 
  35 typedef signed int s32;
  36 typedef unsigned int u32;
  37 
  38 /* Again, only have to worry about 32-bits */
  39 
  40 typedef signed long long s64;
  41 typedef unsigned long long u64;
  42 
  43 #endif /* __KERNEL__ */
  44 
  45 #endif /* defined(_SPARC_TYPES_H) */

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