home *** CD-ROM | disk | FTP | other *** search
/ Beginning C++ Through Gam…rogramming (2nd Edition) / BCGP2E.ISO / bloodshed / devcpp-4.9.9.2_setup.exe / param.h < prev    next >
C/C++ Source or Header  |  2005-01-29  |  476b  |  23 lines

  1. /*
  2.  * param.h
  3.  * This file has no copyright assigned and is placed in the Public Domain.
  4.  * This file is a part of the mingw-runtime package.
  5.  * No warranty is given; refer to the file DISCLAIMER within the package.
  6.  *
  7.  */
  8.  
  9. #ifndef _SYS_PARAM_H
  10. #define _SYS_PARAM_H
  11.  
  12. #include <sys/types.h>
  13. #include <limits.h>
  14.  
  15. /* These are useful for cross-compiling */ 
  16. #define BIG_ENDIAN    4321
  17. #define LITTLE_ENDIAN    1234
  18. #define BYTE_ORDER    LITTLE_ENDIAN
  19.  
  20. #define MAXPATHLEN PATH_MAX
  21.  
  22. #endif
  23.