diff options
| author | rsc <devnull@localhost> | 2003-12-11 17:48:38 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2003-12-11 17:48:38 +0000 |
| commit | 32f69c36e0eec1227934bbd34854bfebd88686f2 (patch) | |
| tree | 1587e9de84816b77168afa81c1594cc686809910 /src/libdraw/x11-alloc.c | |
| parent | ac244f8d287a6119155ea672c8fd13c487c5e4c7 (diff) | |
| download | plan9port-32f69c36e0eec1227934bbd34854bfebd88686f2.tar.gz plan9port-32f69c36e0eec1227934bbd34854bfebd88686f2.zip | |
Add support for user-level 9P servers/clients and various bug fixes to go with them.
Diffstat (limited to 'src/libdraw/x11-alloc.c')
| -rw-r--r-- | src/libdraw/x11-alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libdraw/x11-alloc.c b/src/libdraw/x11-alloc.c index 458efc61..9a6585cb 100644 --- a/src/libdraw/x11-alloc.c +++ b/src/libdraw/x11-alloc.c @@ -10,7 +10,7 @@ * Allocate a Memimage with an optional pixmap backing on the X server. */ Memimage* -xallocmemimage(Rectangle r, u32int chan, int pixmap) +_xallocmemimage(Rectangle r, u32int chan, int pixmap) { int d, offset; Memimage *m; @@ -95,7 +95,7 @@ xallocmemimage(Rectangle r, u32int chan, int pixmap) Memimage* allocmemimage(Rectangle r, u32int chan) { - return xallocmemimage(r, chan, PMundef); + return _xallocmemimage(r, chan, PMundef); } void |
