mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
7 lines
173 B
C
7 lines
173 B
C
#ifndef GC_INLINE_H_
|
|
#define GC_INLINE_H_
|
|
|
|
#define GC_ALWAYS_INLINE __attribute__((always_inline))
|
|
#define GC_NEVER_INLINE __attribute__((noinline))
|
|
|
|
#endif // GC_INLINE_H_
|