Search
lxdream.org :: lxdream/test/include/sys/param.h
lxdream 0.9.1
released Jun 29
Download Now
filename test/include/sys/param.h
changeset 185:6755a04c447f
author nkeynes
date Tue Jul 11 01:35:27 2006 +0000 (17 years ago)
permissions -rw-r--r--
last change First commit of system test framework. 3 initial test cases (incomplete):
testide, testmath, and testta
view annotate diff log raw
     1 /* This is a dummy <sys/param.h> file, not customized for any
     2    particular system.  If there is a param.h in libc/sys/SYSDIR/sys,
     3    it will override this one.  */
     5 #ifndef _SYS_PARAM_H
     6 # define _SYS_PARAM_H
     8 # define HZ (60)
     9 # define NOFILE	(60)
    10 # define PATHSIZE (1024)
    12 #ifdef __i386__
    13 #define BIG_ENDIAN 4321
    14 #define LITTLE_ENDIAN 1234
    15 #define BYTE_ORDER LITTLE_ENDIAN
    16 #endif
    18 #endif
.