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. */
8 #include <sys/config.h>
9 #include <sys/syslimits.h>
10 #include <machine/endian.h>
11 #include <machine/param.h>
14 # define NBBY 8 /* number of bits in a byte */
23 # define PATHSIZE (1024)
26 #define MAXPATHLEN PATH_MAX
28 #define MAX(a,b) ((a) > (b) ? (a) : (b))
29 #define MIN(a,b) ((a) < (b) ? (a) : (b))
32 #define howmany(x, y) (((x)+((y)-1))/(y))