]> sourceware.org Git - newlib-cygwin.git/blob
adc066e9a8756e07edaaa8cadc79b5f05c996ac9
[newlib-cygwin.git] /
1 /* ARM configuration file; HZ is 100 rather than the default 60 */
2
3 #ifndef _SYS_PARAM_H
4 # define _SYS_PARAM_H
5
6 # define HZ (100)
7 # define NOFILE (60)
8 # define PATHSIZE (1024)
9
10 #define BIG_ENDIAN 4321
11 #define LITTLE_ENDIAN 1234
12
13 #ifdef __ARMEB__
14 #define BYTE_ORDER BIG_ENDIAN
15 #else
16 #define BYTE_ORDER LITTLE_ENDIAN
17 #endif
18
19 #endif
This page took 0.034966 seconds and 4 git commands to generate.