2 * Copyright 2006-2010 Haiku Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
5 #ifndef _BSD_SYS_PARAM_H_
6 #define _BSD_SYS_PARAM_H_
9 #include_next <sys/param.h>
16 # define _ALIGNBYTES 7
19 # define _ALIGN(p) (((unsigned)(p) + _ALIGNBYTES) & ~_ALIGNBYTES)
23 # define ALIGNBYTES _ALIGNBYTES
26 # define ALIGN(p) _ALIGN(p)
30 # define howmany(x, y) (((x) + ((y) - 1)) / (y))
34 # define MAXLOGNAME 32
41 #endif /* _BSD_SYS_PARAM_H_ */