Argh, I don't know how I managed this, but it would help to actually

provide the routines that kern/inflate.c expects.
This commit is contained in:
Peter Wemm 1998-11-11 14:28:08 +00:00
parent a533143f79
commit c56ba274eb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=41092

View File

@ -36,7 +36,7 @@
extern unsigned char *storage;
void *
malloc(nbytes)
kzipmalloc(nbytes)
size_t nbytes;
{
unsigned char *p = storage;
@ -50,7 +50,7 @@ malloc(nbytes)
}
void
free(cp)
kzipfree(cp)
void *cp;
{
}