reset error for retrieve. Remove sleep call
[idzebra-moved-to-github.git] / util / dirent.c
index 047c930..d0e7ef4 100644 (file)
@@ -1,12 +1,24 @@
+/*
+ * Copyright (C) 1997-2002, Index Data
+ * All rights reserved.
+ *
+ * $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;
@@ -48,3 +60,4 @@ void closedir(DIR *dd)
 }
 
 #endif
+