* regex.c: fix prototypes of xmalloc(), xcalloc() and xrealloc().

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2087 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2002-02-19 04:25:39 +00:00
parent 0cbfe8c524
commit 1a7929a969
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Tue Feb 19 13:21:51 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* regex.c: fix prototypes of xmalloc(), xcalloc() and xrealloc().
Tue Feb 19 13:16:08 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
* io.c (rb_io_ungetc): don't fail pushed EOF back.

View File

@ -78,9 +78,9 @@ void rb_trap_exec _((void));
#define xrealloc ruby_xrealloc
#define xfree ruby_xfree
void *xmalloc _((size_t));
void *xcalloc _((size_t,size_t));
void *xrealloc _((void*,size_t));
void *xmalloc _((long));
void *xcalloc _((long,long));
void *xrealloc _((void*,long));
void xfree _((void*));
#endif