rse         99/05/25 04:49:49

  Modified:    src/main http_main.c
  Log:
  Give EGCS a prototype to make it happy.  Keep in mind that "static" doesn't
  work here (causes a new warning) because the stuff isn't used anywhere, of
  course.
  
  Revision  Changes    Path
  1.439     +2 -1      apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.438
  retrieving revision 1.439
  diff -u -r1.438 -r1.439
  --- http_main.c       1999/05/25 10:15:06     1.438
  +++ http_main.c       1999/05/25 11:49:46     1.439
  @@ -6517,7 +6517,8 @@
   /* force Expat to be linked into the server executable */
   #ifdef USE_EXPAT
   #include "xmlparse.h"
  -const XML_LChar * suck_in_expat(void)
  +const XML_LChar *suck_in_expat(void);
  +const XML_LChar *suck_in_expat(void)
   {
       return XML_ErrorString(XML_ERROR_NONE);
   }
  
  
  

Reply via email to