From e2abcdca396661cbe0ae2ddb13d5c2b85682c13a Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Fri, 16 Oct 2020 17:41:25 +0300 Subject: initial commit --- includedir/sys/param.h | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 includedir/sys/param.h (limited to 'includedir/sys/param.h') diff --git a/includedir/sys/param.h b/includedir/sys/param.h new file mode 100644 index 0000000..3167713 --- /dev/null +++ b/includedir/sys/param.h @@ -0,0 +1,3 @@ +#include_next +#define ALIGNBYTES (sizeof(uintptr_t) - 1) +#define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) &~ ALIGNBYTES) -- cgit v1.2.3