diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-02 04:47:10 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-02 04:47:10 +0000 |
commit | 61fc7b34f06202f0b161afc330ee7657def8acaf (patch) | |
tree | 395ce45dee07dabd92553cbcdad9b91e37e8ae49 /malloc.c | |
parent | 223c38527bad2df287b67add25c4874aa6f05a7f (diff) | |
download | perl-61fc7b34f06202f0b161afc330ee7657def8acaf.tar.gz |
remove _() non-ansism
p4raw-id: //depot/perl@3518
Diffstat (limited to 'malloc.c')
-rw-r--r-- | malloc.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -412,10 +412,10 @@ union overhead { }; #ifdef DEBUGGING -static void botch _((char *diag, char *s)); +static void botch (char *diag, char *s); #endif -static void morecore _((int bucket)); -static int findbucket _((union overhead *freep, int srchlen)); +static void morecore (int bucket); +static int findbucket (union overhead *freep, int srchlen); static void add_to_chain(void *p, MEM_SIZE size, MEM_SIZE chip); #define MAGIC 0xff /* magic # on accounting info */ @@ -790,7 +790,7 @@ static union overhead *nextf[NBUCKETS]; #ifdef USE_PERL_SBRK #define sbrk(a) Perl_sbrk(a) -Malloc_t Perl_sbrk _((int size)); +Malloc_t Perl_sbrk (int size); #else #ifdef DONT_DECLARE_STD #ifdef I_UNISTD |