File indexing completed on 2025-01-19 04:11:12
0001 /* 0002 * SPDX-FileCopyrightText: 2014 Dmitry Kazakov <dimula73@gmail.com> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef __KO_ALWAYS_INLINE_H 0008 #define __KO_ALWAYS_INLINE_H 0009 0010 #ifndef ALWAYS_INLINE 0011 #if defined __GNUC__ 0012 #define ALWAYS_INLINE inline __attribute__((__always_inline__)) 0013 #elif defined _MSC_VER 0014 #define ALWAYS_INLINE __forceinline 0015 #else 0016 #define ALWAYS_INLINE inline 0017 #endif 0018 #endif 0019 0020 #endif /* __KO_ALWAYS_INLINE_H */