changeset 7907:1be30ef548f5

Make it compile again. suseconds_t does not exist on Cygwin.
author Bruno Haible <bruno@clisp.org>
date Fri, 19 Jan 2007 02:18:25 +0000
parents 16c8e82ea71c
children d41d48e822b4
files tests/test-gettimeofday.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tests/test-gettimeofday.c
+++ b/tests/test-gettimeofday.c
@@ -20,12 +20,11 @@
 #include <config.h>
 
 #include <sys/time.h>
+#include <time.h>
 
 #include <stdio.h>
 #include <string.h>
 
-suseconds_t dummy = 0;	/* just to test if this type is available */
-
 int
 main (int argc, char *argv[])
 {