summaryrefslogtreecommitdiff
path: root/src/numericsort.c
diff options
context:
space:
mode:
authorBill Spitzak <spitzak@gmail.com>2000-04-04 17:57:05 +0000
committerBill Spitzak <spitzak@gmail.com>2000-04-04 17:57:05 +0000
commit328a8f8f0dd777bb9a124e6701bf1595b5aff96e (patch)
treec5c21271c8280ca526502e9d8bc5568abae3eb68 /src/numericsort.c
parent6f42bc1a58242305e554cb66b84c570fbcdc5738 (diff)
Fixes for Cygwin POSIX emulation layer from Norman Vine.
Requires the symbol __CYGWIN__ to be defined, appears to disable the special meaning of backslash and colon in file names. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1056 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/numericsort.c')
-rw-r--r--src/numericsort.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/numericsort.c b/src/numericsort.c
index 288074da4..99a6eaf58 100644
--- a/src/numericsort.c
+++ b/src/numericsort.c
@@ -1,5 +1,5 @@
/*
- * "$Id: numericsort.c,v 1.10 1999/03/08 14:53:44 mike Exp $"
+ * "$Id: numericsort.c,v 1.10.2.1 2000/04/04 17:57:04 bill Exp $"
*
* Numeric sorting routine for the Fast Light Tool Kit (FLTK).
*
@@ -31,7 +31,7 @@
#include <stdlib.h>
#include <sys/types.h>
-#ifdef WIN32
+#if defined(WIN32) && !defined(__CYGWIN__)
#include <FL/filename.H>
#else
#if HAVE_DIRENT_H
@@ -84,5 +84,5 @@ int numericsort(struct dirent **A, struct dirent **B) {
}
/*
- * End of "$Id: numericsort.c,v 1.10 1999/03/08 14:53:44 mike Exp $".
+ * End of "$Id: numericsort.c,v 1.10.2.1 2000/04/04 17:57:04 bill Exp $".
*/