Sync usage with man page.
[netbsd-mini2440.git] / sys / arch / acorn32 / stand / nbfs / rmalloc.c
blobf37d758c63e98068e090f42f78f776d1a7bd4e45
1 /* $NetBSD$ */
3 #include <lib/libsa/stand.h>
4 #include <riscoscalls.h>
6 void *
7 alloc(size_t size)
9 void *ret;
11 if (xosmodule_alloc(size, &ret) != NULL)
12 return NULL;
13 return ret;
16 void dealloc(void *ptr, size_t size)
19 xosmodule_free(ptr);