1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-06 07:37:29 +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,12 @@
#ifndef LINUX_COMIPLER_H_
#define LINUX_COMIPLER_H_
#ifndef __always_inline
# define __always_inline inline
#endif
#ifndef noinline
# define noinline __attribute__((__noinline__))
#endif
#endif // LINUX_COMIPLER_H_