commit 3f53168733c39d4b85bbec686db841b8ba77aa2f
parent c49745685c378babf3c85b8a81675adc3d44af19
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Thu, 6 Aug 2015 21:10:02 +0200
xml: remove forced __inline__ attribute
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/xml.c b/xml.c
@@ -66,7 +66,7 @@ xmlparser_getnext(XMLParser *x)
return x->getnext(x);
}
-static __inline__ void
+static void
xmlparser_parseattrs(XMLParser *x)
{
size_t namelen = 0, valuelen;
@@ -163,7 +163,7 @@ xmlparser_parseattrs(XMLParser *x)
}
}
-static __inline__ void
+static void
xmlparser_parsecomment(XMLParser *x)
{
static const char *end = "-->";
@@ -207,7 +207,7 @@ xmlparser_parsecomment(XMLParser *x)
}
}
-static __inline__ void
+static void
xmlparser_parsecdata(XMLParser *x)
{
static const char *end = "]]>";