remove usage of HAVE_* defines, we cannot and shall not depend on any such

defines in the public external header files
This commit is contained in:
Daniel Stenberg 2003-05-27 12:45:51 +00:00
parent 18234cbdac
commit dcb6d1c01d
2 changed files with 1 additions and 7 deletions

View File

@ -34,11 +34,7 @@
# include <sys/time.h>
# include <time.h>
# else
# ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
include <sys/time.h>
# endif
#endif /* defined (vms) */

View File

@ -23,9 +23,7 @@
* $Id$
***************************************************************************/
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
size_t fread (void *, size_t, size_t, FILE *);
size_t fwrite (const void *, size_t, size_t, FILE *);