18 lines
216 B
C
18 lines
216 B
C
|
|
#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);
|
||
|
|
}
|
||
|
|
|