# HG changeset patch # User Matti Hamalainen # Date 1103994783 0 # Node ID d5aab11eea3d915792a834afa445f54618ab406f # Parent bd84d27dd23bb26497b4d57e0b9e76606fa16039 Remove 'inline' defs. diff -r bd84d27dd23b -r d5aab11eea3d src/xs_support.c --- a/src/xs_support.c Sat Dec 25 11:44:00 2004 +0000 +++ b/src/xs_support.c Sat Dec 25 17:13:03 2004 +0000 @@ -162,19 +162,19 @@ } -inline void xs_findnext(gchar *pcStr, guint *piPos) +void xs_findnext(gchar *pcStr, guint *piPos) { while (pcStr[*piPos] && isspace(pcStr[*piPos])) (*piPos)++; } -inline void xs_findeol(gchar *pcStr, guint *piPos) +void xs_findeol(gchar *pcStr, guint *piPos) { while (pcStr[*piPos] && (pcStr[*piPos] != '\n') && (pcStr[*piPos] != '\r')) (*piPos)++; } -inline void xs_findnum(gchar *pcStr, guint *piPos) +void xs_findnum(gchar *pcStr, guint *piPos) { while (pcStr[*piPos] && isdigit(pcStr[*piPos])) (*piPos)++; }