summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Spitzak <spitzak@gmail.com>2000-04-04 18:00:50 +0000
committerBill Spitzak <spitzak@gmail.com>2000-04-04 18:00:50 +0000
commitbf34ed8ca79d200f5a5069bddf0e553abb0d1bbe (patch)
treef36c9bfe0421726c9b9ca0bf6f0b36fed6d12772
parent328a8f8f0dd777bb9a124e6701bf1595b5aff96e (diff)
Forgot to fix this file
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1057 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--FL/filename.H6
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/filename.H b/FL/filename.H
index d30b9e81c..0395601d4 100644
--- a/FL/filename.H
+++ b/FL/filename.H
@@ -1,5 +1,5 @@
//
-// "$Id: filename.H,v 1.11 1999/02/22 22:10:14 mike Exp $"
+// "$Id: filename.H,v 1.11.2.1 2000/04/04 18:00:50 bill Exp $"
//
// Filename header file for the Fast Light Tool Kit (FLTK).
//
@@ -52,7 +52,7 @@ FL_EXPORT int filename_isdir(const char*);
// Portable "scandir" function. Ugly but apparently necessary...
-#ifdef WIN32
+#if defined(WIN32) && !defined(__CYGWIN__)
struct dirent {char d_name[1];};
@@ -76,5 +76,5 @@ FL_EXPORT int filename_list(const char *d, struct dirent ***list);
#endif
//
-// End of "$Id: filename.H,v 1.11 1999/02/22 22:10:14 mike Exp $".
+// End of "$Id: filename.H,v 1.11.2.1 2000/04/04 18:00:50 bill Exp $".
//