nmake: align with pazpar2 WRT icu/libxslt
[idzebra-moved-to-github.git] / util / dirent.c
index 317a57e..33e728d 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the Zebra server.
-   Copyright (C) 1994-2010 Index Data
+   Copyright (C) Index Data
 
 Zebra is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
@@ -19,6 +19,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <ctype.h>
 #include <assert.h>
 #ifdef WIN32
@@ -49,7 +52,7 @@ DIR *opendir (const char *name)
     dd->handle = FindFirstFile(fullName, &dd->find_data);
     return dd;
 }
-                                                          
+
 struct dirent *readdir (DIR *dd)
 {
     if (dd->handle == INVALID_HANDLE_VALUE)