From: Bradley Nicholes Date: Tue, 25 Sep 2001 14:49:00 +0000 (+0000) Subject: Added static to the inline function definition to support the GNU compiler X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ab40e9a353495983db74c03c78bf6f1cfa78fc4;p=thirdparty%2Fapache%2Fhttpd.git Added static to the inline function definition to support the GNU compiler git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91141 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/os/netware/os.h b/src/os/netware/os.h index edb92449b89..a8ce240d98f 100644 --- a/src/os/netware/os.h +++ b/src/os/netware/os.h @@ -136,6 +136,9 @@ DIR *os_readdir (DIR *dirP); void AMCSocketCleanup(void); void clean_parent_exit(int code); +#ifdef __GNUC__ +static +#endif inline int ap_os_is_path_absolute(const char *file) { char *s = strstr (file, "://");