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. */ 4 5 #ifndef _SYS_PARAM_H 6 # define _SYS_PARAM_H 7 8 #include <sys/config.h> 9 #include <machine/endian.h> 10 #include <machine/param.h> 11 12 #ifndef HZ 13 # define HZ (60) 14 #endif 15 #ifndef NOFILE 16 # define NOFILE (60) 17 #endif 18 #ifndef PATHSIZE 19 # define PATHSIZE (1024) 20 #endif 21 22 #define MAX(a,b) ((a) > (b) ? (a) : (b)) 23 #define MIN(a,b) ((a) < (b) ? (a) : (b)) 24 25 #endif 26