add stub routines

This commit is contained in:
rsc 2006-06-25 19:28:25 +00:00
parent 3656f159a3
commit e0ef95dce1
7 changed files with 91 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#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);
}