From 3f53168733c39d4b85bbec686db841b8ba77aa2f Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Thu, 6 Aug 2015 21:10:02 +0200 Subject: xml: remove forced __inline__ attribute --- xml.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xml.c b/xml.c index 68a581a..079b106 100644 --- 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 = "]]>"; -- cgit v1.2.3