From e685bdeea080160684faaf17169faac0e614dfc7 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Fri, 10 Aug 2007 05:59:36 +0000 Subject: Fix GCC 4.3 issues: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=416852 --- String.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'String.h') diff --git a/String.h b/String.h index 8f0b50b5..71e92faa 100644 --- a/String.h +++ b/String.h @@ -19,9 +19,9 @@ in the source distribution for its full text. #define String_startsWith(s, match) (strstr((s), (match)) == (s)) -inline void String_delete(char* s); +extern void String_delete(char* s); -inline char* String_copy(char* orig); +extern char* String_copy(char* orig); char* String_cat(char* s1, char* s2); @@ -39,7 +39,7 @@ void String_printInt(int i); void String_printPointer(void* p); -inline int String_eq(const char* s1, const char* s2); +extern int String_eq(const char* s1, const char* s2); char** String_split(char* s, char sep); -- cgit v1.2.3