From 4b15f1f9dfc3d2fa44a604cf0bb6f7753c8d42bd Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 1 Oct 2003 13:41:35 +0000 Subject: * ext/etc/etc.c: add new functions: setpwent, getpwent, endpwent, setgrent, getgrent, endgrent. * ext/socket/socket.c (sock_s_gethostbyname): do not reverse lookup. * Makefile.in: copy lex.c from $(srcdir) if it's not the current directory. [ruby-dev:21437] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4640 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- intern.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intern.h') diff --git a/intern.h b/intern.h index 93e6bb8d1..dacd985b7 100644 --- a/intern.h +++ b/intern.h @@ -374,7 +374,7 @@ void posix_signal _((int, RETSIGTYPE (*)(int))); #endif void rb_trap_exit _((void)); void rb_trap_exec _((void)); -char *ruby_signal_name _((int)); +const char *ruby_signal_name _((int)); /* sprintf.c */ VALUE rb_f_sprintf _((int, VALUE*)); /* string.c */ -- cgit