Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /**
  2.  * This file has no copyright assigned and is placed in the Public Domain.
  3.  * This file is part of the w64 mingw-runtime package.
  4.  * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5.  */
  6.  
  7. #ifndef _BSDTYPES_DEFINED
  8. #define _BSDTYPES_DEFINED
  9.  
  10. typedef unsigned char   u_char;
  11. typedef unsigned short  u_short;
  12. typedef unsigned int    u_int;
  13. typedef unsigned long   u_long;
  14. #if defined(__GNUC__) || \
  15.     defined(__GNUG__)
  16. __extension__
  17. #endif /* gcc / g++ */
  18. typedef unsigned long long u_int64;
  19.  
  20. #endif /* _BSDTYPES_DEFINED */
  21.  
  22.