Add dealloc() function, to make hpcboot build again.
ok uwe@.
This commit is contained in:
parent
d27b3a0292
commit
b4370e9bff
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: alloc.c,v 1.3 2006/01/25 18:28:26 christos Exp $ */
|
||||
/* $NetBSD: alloc.c,v 1.4 2006/02/19 14:44:00 peter Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 Shin Takemura.
|
||||
@ -44,3 +44,9 @@ alloc(size_t size)
|
||||
{
|
||||
return malloc(size);
|
||||
}
|
||||
|
||||
void
|
||||
dealloc(void *ptr, size_t size)
|
||||
{
|
||||
free(ptr);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user