home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 14 / hacker14.iso / programacao / cwin / c.exe / $INSTDIR / include / sys / param.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-12-15  |  889 b   |  39 lines

  1. /*
  2.  * param.h
  3.  *
  4.  * This file is part of the Mingw32 package.
  5.  *
  6.  * Contributors:
  7.  *  Created by Earnie Boyd <earnie@users.sf.net>
  8.  *
  9.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  10.  *
  11.  *  This source code is offered for use in the public domain. You may
  12.  *  use, modify or distribute it freely.
  13.  *
  14.  *  This code is distributed in the hope that it will be useful but
  15.  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
  16.  *  DISCLAIMED. This includes but is not limited to warranties of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  18.  *
  19.  * $Revision: 1.2 $
  20.  * $Author: earnie $
  21.  * $Date: 2002/08/30 14:47:59 $
  22.  *
  23.  */
  24.  
  25. #ifndef _SYS_PARAM_H
  26. #define _SYS_PARAM_H
  27.  
  28. #include <sys/types.h>
  29. #include <limits.h>
  30.  
  31. #ifndef __STRICT_ANSI__
  32. /* These are useful for cross-compiling */ 
  33. #define BIG_ENDIAN    4321
  34. #define LITTLE_ENDIAN    1234
  35. #define BYTE_ORDER    LITTLE_ENDIAN
  36. #endif
  37.  
  38. #endif
  39.