Search
lxdream.org :: lxdream/test/include/sys/param.h :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename test/include/sys/param.h
changeset 185:6755a04c447f
author nkeynes
date Sat Jan 06 04:08:11 2007 +0000 (17 years ago)
permissions -rw-r--r--
last change Add test for NTSC timing, retrace/scanline events
file annotate diff log raw
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/test/include/sys/param.h Sat Jan 06 04:08:11 2007 +0000
1.3 @@ -0,0 +1,18 @@
1.4 +/* This is a dummy <sys/param.h> file, not customized for any
1.5 + particular system. If there is a param.h in libc/sys/SYSDIR/sys,
1.6 + it will override this one. */
1.7 +
1.8 +#ifndef _SYS_PARAM_H
1.9 +# define _SYS_PARAM_H
1.10 +
1.11 +# define HZ (60)
1.12 +# define NOFILE (60)
1.13 +# define PATHSIZE (1024)
1.14 +
1.15 +#ifdef __i386__
1.16 +#define BIG_ENDIAN 4321
1.17 +#define LITTLE_ENDIAN 1234
1.18 +#define BYTE_ORDER LITTLE_ENDIAN
1.19 +#endif
1.20 +
1.21 +#endif
.