reset error for retrieve. Remove sleep call
[idzebra-moved-to-github.git] / util / dirent.c
index 908a450..d0e7ef4 100644 (file)
@@ -1,26 +1,24 @@
 /*
- * Copyright (C) 1997, Index Data I/S 
+ * Copyright (C) 1997-2002, Index Data
  * All rights reserved.
- * Sebastian Hammer, Adam Dickmeiss
  *
- * $Log: dirent.c,v $
- * Revision 1.2  1997-09-17 12:19:24  adam
- * Zebra version corresponds to YAZ version 1.4.
- * Changed Zebra server so that it doesn't depend on global common_resource.
- *
- * 
+ * $Id: dirent.c,v 1.5 2002-04-04 20:50:37 adam Exp $
  *
  * This utility implements a opendir/readdir/close on Windows.
  */
 
-#ifdef WINDOWS
+#include <ctype.h>
 #include <assert.h>
+#ifdef WIN32
 #include <io.h>
+#endif
 #include <string.h>
 #include <stdlib.h>
 
 #include <direntz.h>
 
+#ifdef WIN32
+
 struct DIR {
     HANDLE handle;
     WIN32_FIND_DATA find_data;
@@ -62,3 +60,4 @@ void closedir(DIR *dd)
 }
 
 #endif
+