Diff for /XML/xmlIO.c between versions 1.9 and 1.10

version 1.9, 1999/09/17 10:21:04 version 1.10, 1999/09/17 12:08:24
Line 6 Line 6
  * Daniel.Veillard@w3.org   * Daniel.Veillard@w3.org
  */   */
   
 #include "config.h"  #ifdef WIN32
   #define HAVE_FCNTL_H
   #include <io.h>
   #else
   #include <config.h>
   #endif
   
   #include <stdio.h>
   #include <string.h>
   
   #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>  #include <sys/types.h>
   #endif
   #ifdef HAVE_SYS_STAT_H
 #include <sys/stat.h>  #include <sys/stat.h>
   #endif
   #ifdef HAVE_FCNTL_H
 #include <fcntl.h>  #include <fcntl.h>
   #endif
 #ifdef HAVE_UNISTD_H  #ifdef HAVE_UNISTD_H
 #include <unistd.h>  #include <unistd.h>
 #endif  #endif
   #ifdef HAVE_STDLIB_H
   #include <stdlib.h>
   #endif
 #ifdef HAVE_ZLIB_H  #ifdef HAVE_ZLIB_H
 #include <zlib.h>  #include <zlib.h>
 #endif  #endif
 #include <string.h>  
   
 #include "xmlmemory.h"  #include "xmlmemory.h"
 #include "parser.h"  #include "parser.h"

Removed from v.1.9  
changed lines
  Added in v.1.10


Webmaster