Last change
on this file since 1111 was 1046, checked in by alloc, 8 years ago |
Daodan: Added Windows MinGW and build batch file
|
File size:
527 bytes
|
Line | |
---|
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
|
---|
Note:
See
TracBrowser
for help on using the repository browser.