linux/arch/s390/include/uapi/asm/types.h
<<
>>
Prefs
   1/*
   2 *  S390 version
   3 *
   4 *  Derived from "include/asm-i386/types.h"
   5 */
   6
   7#ifndef _UAPI_S390_TYPES_H
   8#define _UAPI_S390_TYPES_H
   9
  10#include <asm-generic/int-ll64.h>
  11
  12#ifndef __ASSEMBLY__
  13
  14/* A address type so that arithmetic can be done on it & it can be upgraded to
  15   64 bit when necessary 
  16*/
  17typedef unsigned long addr_t; 
  18typedef __signed__ long saddr_t;
  19
  20#endif /* __ASSEMBLY__ */
  21
  22#endif /* _UAPI_S390_TYPES_H */
  23