1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-17 12:37:51 +02:00

Add userland test with mock kernel headers

This commit is contained in:
Nick Terrell
2017-04-04 11:53:22 -07:00
parent 33fc0ad56a
commit 79298bf187
8 changed files with 713 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#ifndef LINUX_KERNEL_H_
#define LINUX_KERNEL_H_
#define ALIGN(x, a) ({ \
typeof(x) const __xe = (x); \
typeof(a) const __ae = (a); \
typeof(a) const __m = __ae - 1; \
typeof(x) const __r = __xe & __m; \
__xe + (__r ? (__ae - __r) : 0); \
})
#define PTR_ALIGN(p, a) (typeof(p))ALIGN((unsigned long long)(p), (a))
#endif // LINUX_KERNEL_H_