aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/boot
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1998-11-10 09:08:49 +0000
committerPeter Wemm <peter@FreeBSD.org>1998-11-10 09:08:49 +0000
commit5ad3d2212f7f879b747dda6f166adaa87bc54245 (patch)
tree68ce118db74e71e395a294ce86b96eb46679d5d9 /sys/i386/boot
parent4e61198e8f179b6c2d51b6d8803d89fa538cc7fa (diff)
Notes
Diffstat (limited to 'sys/i386/boot')
-rw-r--r--sys/i386/boot/kzipboot/malloc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/i386/boot/kzipboot/malloc.c b/sys/i386/boot/kzipboot/malloc.c
index cf51be721a51..86bccc8469c9 100644
--- a/sys/i386/boot/kzipboot/malloc.c
+++ b/sys/i386/boot/kzipboot/malloc.c
@@ -36,9 +36,8 @@
extern unsigned char *storage;
void *
-malloc(nbytes, junk1, junk2) /* junk? not used */
+malloc(nbytes)
size_t nbytes;
- int junk1, junk2;
{
unsigned char *p = storage;
storage += nbytes;
@@ -51,8 +50,7 @@ malloc(nbytes, junk1, junk2) /* junk? not used */
}
void
-free(cp, junk) /* junk not used */
+free(cp)
void *cp;
- int junk;
{
}