Fix lmathtab.gperf APPLE #ifdef location
authorAri Johnson <ari@theari.com>
Wed, 27 Apr 2011 02:13:58 +0000 (22:13 -0400)
committerAri Johnson <ari@theari.com>
Wed, 27 Apr 2011 02:13:58 +0000 (22:13 -0400)
src/lmathtab.gperf

index 17b709205726494e2e06c6941c04a618f0a11f8a..6c61d7016e035523efa0b7365eda2c309e1858bf 100644 (file)
@@ -9,6 +9,11 @@
 %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)
 
@@ -45,11 +50,6 @@ struct math {
   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