summaryrefslogtreecommitdiff
path: root/sys/pc98/boot/kzipboot/malloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/pc98/boot/kzipboot/malloc.c')
-rw-r--r--sys/pc98/boot/kzipboot/malloc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/pc98/boot/kzipboot/malloc.c b/sys/pc98/boot/kzipboot/malloc.c
index 052e5e357dbbd..cf51be721a517 100644
--- a/sys/pc98/boot/kzipboot/malloc.c
+++ b/sys/pc98/boot/kzipboot/malloc.c
@@ -36,8 +36,9 @@
extern unsigned char *storage;
void *
-kzipmalloc(nbytes)
+malloc(nbytes, junk1, junk2) /* junk? not used */
size_t nbytes;
+ int junk1, junk2;
{
unsigned char *p = storage;
storage += nbytes;
@@ -50,7 +51,8 @@ kzipmalloc(nbytes)
}
void
-kzipfree(cp)
+free(cp, junk) /* junk not used */
void *cp;
+ int junk;
{
}