summaryrefslogtreecommitdiff
path: root/src/filename_isdir.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-12-21 14:17:00 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-12-21 14:17:00 +0000
commit128526fc282b69b2abcd0c24e6d042c9dea8c862 (patch)
tree7cdfe7b5a70a0e434493d5a9669c1e1c777b9196 /src/filename_isdir.cxx
parente9bf41eb098a0f9aeea1dc6eca4e63e4642a682f (diff)
Fixed browser @ symbol prefix handling...
OS/2 fixes (makeinclude update and filename_isdir needed #include <sys/types.h>) MingW fix (makeinclude update) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1886 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/filename_isdir.cxx')
-rw-r--r--src/filename_isdir.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/filename_isdir.cxx b/src/filename_isdir.cxx
index 069cf8d23..81d52913d 100644
--- a/src/filename_isdir.cxx
+++ b/src/filename_isdir.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: filename_isdir.cxx,v 1.4.2.5.2.4 2001/12/20 19:43:17 easysw Exp $"
+// "$Id: filename_isdir.cxx,v 1.4.2.5.2.5 2001/12/21 14:17:00 easysw Exp $"
//
// Directory detection routines for the Fast Light Tool Kit (FLTK).
//
@@ -26,6 +26,7 @@
// Used by fl_file_chooser
#include "flstring.h"
+#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
#include <FL/filename.H>
@@ -67,5 +68,5 @@ int filename_isdir(const char* n) {
}
//
-// End of "$Id: filename_isdir.cxx,v 1.4.2.5.2.4 2001/12/20 19:43:17 easysw Exp $".
+// End of "$Id: filename_isdir.cxx,v 1.4.2.5.2.5 2001/12/21 14:17:00 easysw Exp $".
//