From: Bradley Nicholes Date: Mon, 16 Jun 2003 19:05:52 +0000 (+0000) Subject: Add some prototypes to avoid a warning with the GNU compiler X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db476badc2549ebd5c020a0eafce4ffeff8c5d3c;p=thirdparty%2Fapache%2Fhttpd.git Add some prototypes to avoid a warning with the GNU compiler Submitted by: G�nter Knauf git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@100268 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/os/netware/libpre.c b/src/os/netware/libpre.c index 67ce6c13d06..3b0956babf3 100644 --- a/src/os/netware/libpre.c +++ b/src/os/netware/libpre.c @@ -9,6 +9,9 @@ provide. ------------------------------------------------------------------*/ +int _lib_start(); +int _lib_stop(); + #ifdef __GNUC__ #include /* memset */ extern char _edata, _end ; /* end of DATA (start of BSS), end of BSS */ diff --git a/src/os/netware/libprews.c b/src/os/netware/libprews.c index 65cd5381f41..59149f803c9 100644 --- a/src/os/netware/libprews.c +++ b/src/os/netware/libprews.c @@ -11,6 +11,9 @@ #include "stddef.h" #include "ws2nlm.h" +int _lib_start_ws(); +int _lib_stop_ws(); + #ifdef __GNUC__ #include /* memset */ extern char _edata, _end ; /* end of DATA (start of BSS), end of BSS */