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

* ruby.c (ruby_process_options): add missing return type.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2011-06-11 01:01:09 +00:00
parent 7eed90933c
commit 1482fccef5
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sat Jun 11 10:00:49 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ruby.c (ruby_process_options): add missing return type.
Fri Jun 10 23:18:09 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* ext/tk/tcltklib.c (lib_eventloop_core): replace CHECK_INTS with

2
ruby.c
View file

@ -1802,7 +1802,7 @@ ruby_process_options(int argc, char **argv)
#ifndef HAVE_SETPROCTITLE
{
extern compat_init_setproctitle(int argc, char *argv[]);
extern void compat_init_setproctitle(int argc, char *argv[]);
compat_init_setproctitle(argc, argv);
}
#endif