types.h 666 B

1234567891011121314151617181920212223242526272829
  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 unsigned char __u8;
  12. typedef __signed__ short __s16;
  13. typedef unsigned short __u16;
  14. typedef __signed__ int __s32;
  15. typedef unsigned int __u32;
  16. #ifdef __GNUC__
  17. __extension__ typedef __signed__ long long __s64;
  18. __extension__ typedef unsigned long long __u64;
  19. #else
  20. typedef __signed__ long long __s64;
  21. typedef unsigned long long __u64;
  22. #endif
  23. #endif /* _ASM_GENERIC_INT_LL64_H */