types.h 498 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * asm-generic/int-ll64.h
  4. *
  5. * Integer declarations for architectures which use "long long"
  6. * for 64-bit types.
  7. */
  8. #ifndef _ASM_GENERIC_INT_LL64_H
  9. #define _ASM_GENERIC_INT_LL64_H
  10. typedef __signed__ char __s8;
  11. typedef __signed__ short __s16;
  12. typedef __signed__ int __s32;
  13. #ifdef __GNUC__
  14. __extension__ typedef __signed__ long long __s64;
  15. #else
  16. typedef __signed__ long long __s64;
  17. #endif
  18. #endif /* _ASM_GENERIC_INT_LL64_H */