plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

alloc-stub.c (215B)


      1 #include <u.h>
      2 #include <libc.h>
      3 #include <draw.h>
      4 #include <memdraw.h>
      5 
      6 Memimage*
      7 allocmemimage(Rectangle r, u32int chan)
      8 {
      9 	return _allocmemimage(r, chan);
     10 }
     11 
     12 void
     13 freememimage(Memimage *m)
     14 {
     15 	_freememimage(m);
     16 }