-rwxr-xr-x | gcl/h/compbas.h | 7 |
diff --git a/gcl/h/compbas.h b/gcl/h/compbas.h index f55400e22..12d55c7f1 100755 --- a/gcl/h/compbas.h +++ b/gcl/h/compbas.h @@ -3,3 +3,10 @@ #include <setjmp.h> +#ifndef INLINE +#if (defined(__GNUC__) && __GNUC__ <= 4) && !defined __clang__ +#define INLINE extern inline +#else +#define INLINE inline +#endif +#endif |