summaryrefslogtreecommitdiff
path: root/src/third_party/zstandard-1.3.7/zstd/contrib/linux-kernel/test/include/linux/compiler.h
blob: 7991b8b29d54c1c150f363a0b9c20d26543b3ad6 (plain)
1
2
3
4
5
6
7
8
9
10
11
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_