plan9port/src/libdraw/nowsys-alloc.c

18 lines
216 B
C
Raw Normal View History

2005-02-02 22:04:41 +00:00
#include <u.h>
#include <libc.h>
#include <draw.h>
#include <memdraw.h>
Memimage*
allocmemimage(Rectangle r, u32int chan)
{
return _allocmemimage(r, chan);
}
void
freememimage(Memimage *m)
{
_freememimage(m);
}