* 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:
parent
0cbfe8c524
commit
1a7929a969
@ -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.
|
||||
|
6
regex.c
6
regex.c
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user