You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@locus.apache.org on 2000/06/30 22:38:33 UTC

cvs commit: apache-1.3/src/os/win32 readdir.h

wrowe       00/06/30 13:38:27

  Modified:    src/os/win32 readdir.h
  Log:
    A good catch, this one was hurting PHP4, possibly others.
  
  PR: 6260
  Submitted by:	Jerone Janssen <je...@darius.demon.nl>
  
  Revision  Changes    Path
  1.5       +5 -0      apache-1.3/src/os/win32/readdir.h
  
  Index: readdir.h
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/os/win32/readdir.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- readdir.h	1998/04/12 19:02:06	1.4
  +++ readdir.h	2000/06/30 20:38:26	1.5
  @@ -3,6 +3,9 @@
    * on Windows 95/NT.
    */
   
  +#ifndef APACHE_READDIR_H
  +#define APACHE_READDIR_H
  +
   #include <io.h>
   #include <stdio.h>
   #include <stdlib.h>
  @@ -34,3 +37,5 @@
   API_EXPORT(DIR *) opendir(const char *);
   API_EXPORT(struct dirent *) readdir(DIR *);
   API_EXPORT(int) closedir(DIR *);
  +
  +#endif /* ndef APACHE_READDIR_H */