Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * Copyright (c) 2004, 2005 by
  3.  * Ralf Corsepius, Ulm/Germany. All rights reserved.
  4.  *
  5.  * Permission to use, copy, modify, and distribute this software
  6.  * is freely granted, provided that this notice is preserved.
  7.  */
  8.  
  9. #ifndef _SYS__STDINT_H
  10. #define _SYS__STDINT_H
  11.  
  12. #include <machine/_default_types.h>
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. #ifdef ___int8_t_defined
  19. typedef __int8_t int8_t ;
  20. typedef __uint8_t uint8_t ;
  21. #define __int8_t_defined 1
  22. #endif
  23.  
  24. #ifdef ___int16_t_defined
  25. typedef __int16_t int16_t ;
  26. typedef __uint16_t uint16_t ;
  27. #define __int16_t_defined 1
  28. #endif
  29.  
  30. #ifdef ___int32_t_defined
  31. typedef __int32_t int32_t ;
  32. typedef __uint32_t uint32_t ;
  33. #define __int32_t_defined 1
  34. #endif
  35.  
  36. #ifdef ___int64_t_defined
  37. typedef __int64_t int64_t ;
  38. typedef __uint64_t uint64_t ;
  39. #define __int64_t_defined 1
  40. #endif
  41.  
  42. typedef __intptr_t intptr_t;
  43. typedef __uintptr_t uintptr_t;
  44.  
  45. #ifdef __cplusplus
  46. }
  47. #endif
  48.  
  49. #endif /* _SYS__STDINT_H */
  50.