Initial bulk commit for "Git on MSys"
[msysgit/historical-msysgit.git] / mingw / include / sys / param.h
blob74966bd78da349f2b4a6ff2a19a2a9b4f3eb6a57
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.
7 */
9 #ifndef _SYS_PARAM_H
10 #define _SYS_PARAM_H
12 #include <sys/types.h>
13 #include <limits.h>
15 /* These are useful for cross-compiling */
16 #define BIG_ENDIAN 4321
17 #define LITTLE_ENDIAN 1234
18 #define BYTE_ORDER LITTLE_ENDIAN
20 #define MAXPATHLEN PATH_MAX
22 #endif