Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 56285 invoked by uid 500); 25 Sep 2001 14:49:23 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 56268 invoked by uid 500); 25 Sep 2001 14:49:23 -0000 Delivered-To: apmail-apache-1.3-cvs@apache.org Date: 25 Sep 2001 14:49:00 -0000 Message-ID: <20010925144900.43765.qmail@icarus.apache.org> From: bnicholes@apache.org To: apache-1.3-cvs@apache.org Subject: cvs commit: apache-1.3/src/os/netware os.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N bnicholes 01/09/25 07:49:00 Modified: src/os/netware os.h Log: Added static to the inline function definition to support the GNU compiler Revision Changes Path 1.20 +3 -0 apache-1.3/src/os/netware/os.h Index: os.h =================================================================== RCS file: /home/cvs/apache-1.3/src/os/netware/os.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- os.h 2001/08/21 20:22:09 1.19 +++ os.h 2001/09/25 14:49:00 1.20 @@ -136,6 +136,9 @@ 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, "://");