stdint.h 877B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright (C) 2004 Tobias Lorenz
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef STDINT_H
  9. #define STDINT_H
  10. typedef unsigned long size_t;
  11. typedef unsigned char uint8_t;
  12. typedef unsigned short uint16_t;
  13. typedef unsigned long uint32_t;
  14. typedef unsigned long long uint64_t;
  15. typedef signed char int8_t;
  16. typedef signed short int16_t;
  17. typedef signed int int32_t;
  18. typedef signed long long int64_t;
  19. typedef signed char s8;
  20. typedef unsigned char u8;
  21. typedef signed short s16;
  22. typedef unsigned short u16;
  23. typedef signed long s32;
  24. typedef unsigned int u32;
  25. typedef signed long long s64;
  26. typedef unsigned long long u64;
  27. #endif /* STDINT_H */