]> sjero.net Git - wget/blobdiff - src/ptimer.c
[svn] Remove K&R support.
[wget] / src / ptimer.c
index 52b8111eb483b663f6c7e3bb8e111195a02feea4..695019e9389079c497484486b3d8cda294532dea 100644 (file)
@@ -54,20 +54,16 @@ so, delete this exception statement from your version.  */
 
 #include <stdio.h>
 #include <stdlib.h>
-#ifdef HAVE_STRING_H
-# include <string.h>
-#else  /* not HAVE_STRING_H */
-# include <strings.h>
-#endif /* not HAVE_STRING_H */
-#include <sys/types.h>
+#include <string.h>
 #include <errno.h>
 #ifdef HAVE_UNISTD_H
 # include <unistd.h>
 #endif
 #include <assert.h>
+#include <time.h>
 
-/* Cygwin currently (as of 2005-04-08, Cygwin 1.5.14) lack clock_getres,
-   but still define _POSIX_TIMERS!  Because of that we simply use the
+/* Cygwin currently (as of 2005-04-08, Cygwin 1.5.14) lacks clock_getres,
+   but still defines _POSIX_TIMERS!  Because of that we simply use the
    Windows timers under Cygwin.  */
 #ifdef __CYGWIN__
 # include <windows.h>
@@ -76,10 +72,6 @@ so, delete this exception statement from your version.  */
 #include "wget.h"
 #include "ptimer.h"
 
-#ifndef errno
-extern int errno;
-#endif
-
 /* Depending on the OS and availability of gettimeofday(), one and
    only one of PTIMER_POSIX, PTIMER_GETTIMEOFDAY, PTIMER_WINDOWS, or
    PTIMER_TIME will be defined.  */