diff options
author | Blair Zajac <blair@orcaware.com> | 1998-03-06 02:29:29 -0800 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-03-16 13:08:55 +0000 |
commit | e9cb6d146cf75820a5771a80b499a65f1217c427 (patch) | |
tree | 870daebb6306839514708380c6b367b589470ac6 /x2p | |
parent | e5c9fcd0420f2862565625a4bd5596204107f54f (diff) | |
download | perl-e9cb6d146cf75820a5771a80b499a65f1217c427.tar.gz |
PATCH: util.c and util.h function declarations do not match
Date: Fri, 6 Mar 1998 10:29:29 -0800 (PST)
Subject: PATCH: cgywin32 patch for perlgcc
Date: Fri, 6 Mar 1998 11:15:36 -0800 (PST)
Subject: PATCH: perl5.004_62 on cygwin32
Date: Fri, 6 Mar 1998 11:57:35 -0800 (PST)
p4raw-id: //depot/perl@813
Diffstat (limited to 'x2p')
-rw-r--r-- | x2p/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x2p/util.c b/x2p/util.c index 3d3b99a952..f8e342cb54 100644 --- a/x2p/util.c +++ b/x2p/util.c @@ -24,7 +24,7 @@ static char nomem[] = "Out of memory!\n"; Malloc_t -safemalloc(size_t size) +safemalloc(MEM_SIZE size) { Malloc_t ptr; @@ -47,7 +47,7 @@ safemalloc(size_t size) /* paranoid version of realloc */ Malloc_t -saferealloc(void *where, size_t size) +saferealloc(Malloc_t where, MEM_SIZE size) { Malloc_t ptr; @@ -71,7 +71,7 @@ saferealloc(void *where, size_t size) /* safe version of free */ Free_t -safefree(void *where) +safefree(Malloc_t where) { #ifdef DEBUGGING if (debug & 128) |