summaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-10 00:41:44 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-10 00:41:44 +0000
commitd1c4b38c09342d6af21d395563f4500e33fa1cbc (patch)
treee30f89ab304a170e019953ac9f1bb219f6300105 /file.c
parent1755b98599f3b7768972a8cfbc4f80f4c22bc0ea (diff)
downloadruby-d1c4b38c09342d6af21d395563f4500e33fa1cbc.tar.gz
ruby-d1c4b38c09342d6af21d395563f4500e33fa1cbc.tar.xz
ruby-d1c4b38c09342d6af21d395563f4500e33fa1cbc.zip
* file.c: ISPRINT() needs ctype.h
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10905 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/file.c b/file.c
index 94de21b3b..a8df504ae 100644
--- a/file.c
+++ b/file.c
@@ -39,6 +39,8 @@ int flock(int, int);
# define MAXPATHLEN 1024
#endif
+#include <ctype.h>
+
#include <time.h>
VALUE rb_time_new(time_t, time_t);