summaryrefslogtreecommitdiff
path: root/lib/libX11/src/CopyPlane.c
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2009-05-03 12:59:13 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2009-05-03 12:59:13 +0000
commit42f51ca8ac9c0f97101006a1892350b599b579c3 (patch)
treedc092d06ac762491ec21f9e28e7b33edddb9c8e9 /lib/libX11/src/CopyPlane.c
parentdf8d13bc873527069d0e7b2396638af253b48763 (diff)
update to libX11 1.2.1
Diffstat (limited to 'lib/libX11/src/CopyPlane.c')
-rw-r--r--lib/libX11/src/CopyPlane.c24
1 files changed, 13 insertions, 11 deletions
diff --git a/lib/libX11/src/CopyPlane.c b/lib/libX11/src/CopyPlane.c
index b81388887..fd512dfe9 100644
--- a/lib/libX11/src/CopyPlane.c
+++ b/lib/libX11/src/CopyPlane.c
@@ -32,18 +32,20 @@ in this Software without prior written authorization from The Open Group.
#include "Xlibint.h"
int
-XCopyPlane(dpy, src_drawable, dst_drawable, gc,
- src_x, src_y, width, height,
- dst_x, dst_y, bit_plane)
- register Display *dpy;
- Drawable src_drawable, dst_drawable;
- GC gc;
- int src_x, src_y;
- unsigned int width, height;
- int dst_x, dst_y;
- unsigned long bit_plane;
+XCopyPlane(
+ register Display *dpy,
+ Drawable src_drawable,
+ Drawable dst_drawable,
+ GC gc,
+ int src_x,
+ int src_y,
+ unsigned int width,
+ unsigned int height,
+ int dst_x,
+ int dst_y,
+ unsigned long bit_plane)
-{
+{
register xCopyPlaneReq *req;
LockDisplay(dpy);