mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-09 07:00:23 +02:00
7 lines
155 B
C
7 lines
155 B
C
#ifndef INLINE_H
|
|
#define INLINE_H
|
|
|
|
#define ALWAYS_INLINE __attribute__((always_inline))
|
|
#define NEVER_INLINE __attribute__((noinline))
|
|
|
|
#endif // INLINE_H
|