linux-old/arch/ppc64/boot/ppc32-types.h
<<
>>
Prefs
   1#ifndef _PPC64_TYPES_H
   2#define _PPC64_TYPES_H
   3
   4typedef __signed__ char __s8;
   5typedef unsigned char __u8;
   6
   7typedef __signed__ short __s16;
   8typedef unsigned short __u16;
   9
  10typedef __signed__ int __s32;
  11typedef unsigned int __u32;
  12
  13typedef __signed__ long long __s64;
  14typedef unsigned long long __u64;
  15
  16typedef signed char s8;
  17typedef unsigned char u8;
  18
  19typedef signed short s16;
  20typedef unsigned short u16;
  21
  22typedef signed int s32;
  23typedef unsigned int u32;
  24
  25typedef signed long long s64;
  26typedef unsigned long long u64;
  27
  28#define BITS_PER_LONG 32
  29
  30typedef struct {
  31        __u32 u[4];
  32} __attribute((aligned(16))) __vector128;
  33
  34typedef __vector128 vector128;
  35
  36#endif /* _PPC64_TYPES_H */
  37
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.