Attached is a patch to fix the errors.
diff --git a/source/luarest/lmteffectslib.c b/source/luarest/lmteffectslib.c
index 6fb6b71..801b43e 100644
--- a/source/luarest/lmteffectslib.c
+++ b/source/luarest/lmteffectslib.c
@@ -214,7 +214,7 @@ static int effectslib_perlinnoise(lua_State *L)
 
 /* # define FASTFLOOR(x) ( ((int) (x) <= (x)) ? ((int) x) : (((int) x) - 1) ) */
 
-inline int FASTFLOOR(double x) {
+static inline int FASTFLOOR(double x) {
     return (int) (x) <= x ? (int) x : (int) x - 1;
 }
 
diff --git a/source/tex/texmath.c b/source/tex/texmath.c
index 619e907..969bd7d 100644
--- a/source/tex/texmath.c
+++ b/source/tex/texmath.c
@@ -5570,7 +5570,7 @@ static int tex_aux_short_math(halfword m)
     return 0;
 }
 
-inline void tex_aux_set_math_option(halfword beginmath, halfword endmath, halfword option)
+static inline void tex_aux_set_math_option(halfword beginmath, halfword endmath, halfword option)
 {
     if (math_options_par & option) {
         math_options(beginmath) |= option;
_______________________________________________
dev-context mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to