ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/Daodan/MinGW/include/sys/param.h
Revision: 1046
Committed: Mon Aug 29 13:19:38 2016 UTC (9 years, 2 months ago) by alloc
Content type: text/x-chdr
File size: 527 byte(s)
Log Message:
Daodan: Added Windows MinGW and build batch file

File Contents

# Content
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 #ifdef PATH_MAX
21 #define MAXPATHLEN PATH_MAX
22 #else
23 #define MAXPATHLEN 260
24 #endif
25
26 #endif