1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* file.c: ISPRINT() needs ctype.h

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10905 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2006-09-10 00:41:44 +00:00
parent 166ee9719f
commit 352303c906
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sun Sep 10 09:41:29 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* file.c: ISPRINT() needs ctype.h
Sun Sep 10 09:19:47 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/optparse.rb: splat parsed arguments.

2
file.c
View file

@ -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);