You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2001/02/16 22:04:22 UTC

cvs commit: apr/dso/unix dso.c

trawick     01/02/16 13:04:21

  Modified:    dso/unix dso.c
  Log:
  include <string.h> for the strerror() prototype on HP-UX 11
  
  Revision  Changes    Path
  1.33      +3 -0      apr/dso/unix/dso.c
  
  Index: dso.c
  ===================================================================
  RCS file: /home/cvs/apr/dso/unix/dso.c,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- dso.c	2001/02/16 04:15:33	1.32
  +++ dso.c	2001/02/16 21:04:17	1.33
  @@ -60,6 +60,9 @@
   #ifdef HAVE_STDDEF_H
   #include <stddef.h>
   #endif
  +#if APR_HAVE_STRING_H
  +#include <string.h> /* for strerror() on HP-UX */
  +#endif
   
   static apr_status_t dso_cleanup(void *thedso)
   {