%define initializer-suffix ,NULL
%{
+#ifdef __APPLE__
+#define __inline
+#undef __GNUC_STDC_INLINE__
+#endif
+
/** Declaration macro for math functions */
#define MATH_FUNC(func) static void func(char **ptr, int nptr, char *buff, char **bp)
const char *name; /**< Name of the function. */
void (*func) (char **, int, char *, char **); /**< Pointer to function code. */
};
-
-#ifdef __APPLE__
-#define __inline
-#undef __GNUC_STDC_INLINE__
-#endif
%%
ADD, math_add
SUB, math_sub