1
0
mirror of https://github.com/facebook/zstd.git synced 2025-11-03 20:33:11 +03:00
Files
zstd/contrib/linux-kernel/test/include/linux/compiler.h
2017-04-04 11:53:22 -07:00

13 lines
220 B
C

#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_