summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-11-26 19:41:57 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-11-26 19:41:57 +0000
commit8a18013f69710648f701dc6a54307c8bb2ce0f5a (patch)
tree60b3f0ed0272569650bd1a28561e3a64657f3ecf /src
parent85f98758eeaad3094e5397fb89b68264b8092ad3 (diff)
Need to include <ctype.h>...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1733 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/filename_absolute.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/filename_absolute.cxx b/src/filename_absolute.cxx
index 6967f5fb7..8e316294e 100644
--- a/src/filename_absolute.cxx
+++ b/src/filename_absolute.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: filename_absolute.cxx,v 1.5.2.4.2.1 2001/11/26 00:15:06 easysw Exp $"
+// "$Id: filename_absolute.cxx,v 1.5.2.4.2.2 2001/11/26 19:41:57 easysw Exp $"
//
// Filename expansion routines for the Fast Light Tool Kit (FLTK).
//
@@ -32,6 +32,7 @@
#include <FL/filename.H>
#include <stdlib.h>
#include "flstring.h"
+#include <ctype.h>
#if defined(WIN32) && !defined(__CYGWIN__)
# include <direct.h>
//# define getcwd(a,b) _getdcwd(0,a,b)
@@ -172,5 +173,5 @@ filename_relative(char *to, // O - Relative filename
//
-// End of "$Id: filename_absolute.cxx,v 1.5.2.4.2.1 2001/11/26 00:15:06 easysw Exp $".
+// End of "$Id: filename_absolute.cxx,v 1.5.2.4.2.2 2001/11/26 19:41:57 easysw Exp $".
//