From b8669fe321c6f5e81d071d5790e51b9611fde860 Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 30 Apr 1999 07:55:47 +0000 Subject: glibc 2.1 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_3@454 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ruby.c') diff --git a/ruby.c b/ruby.c index 10df06542e..4f6dcea00b 100644 --- a/ruby.c +++ b/ruby.c @@ -150,7 +150,7 @@ rubylib_mangle(s, l) } newl = strlen(newp); if (newl == 0 || oldl == 0 || newl > STATIC_FILE_LENGTH) { - Fatal("malformed RUBYLIB_PREFIX"); + rb_fatal("malformed RUBYLIB_PREFIX"); } strcpy(ret, newp); s = ret; @@ -172,7 +172,7 @@ rubylib_mangle(s, l) return s; } if (l + newl - oldl > STATIC_FILE_LENGTH || newl > STATIC_FILE_LENGTH) { - Fatal("malformed RUBYLIB_PREFIX"); + rb_fatal("malformed RUBYLIB_PREFIX"); } strcpy(ret + newl, s + oldl); return ret; -- cgit v1.2.3