break x11 for sure

This commit is contained in:
rsc 2005-02-02 22:04:41 +00:00
parent 568e208e37
commit 41e0f84ca6
17 changed files with 142 additions and 16 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);
}