diff options
Diffstat (limited to 'nx-X11/lib/X11/ClearArea.c')
-rw-r--r-- | nx-X11/lib/X11/ClearArea.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/nx-X11/lib/X11/ClearArea.c b/nx-X11/lib/X11/ClearArea.c index 354c992c8..41fd17c80 100644 --- a/nx-X11/lib/X11/ClearArea.c +++ b/nx-X11/lib/X11/ClearArea.c @@ -30,12 +30,14 @@ in this Software without prior written authorization from The Open Group. #include "Xlibint.h" int -XClearArea (dpy, w, x, y, width, height, exposures) - register Display *dpy; - Window w; - int x, y; - unsigned int width, height; - Bool exposures; +XClearArea ( + register Display *dpy, + Window w, + int x, + int y, + unsigned int width, + unsigned int height, + Bool exposures) { register xClearAreaReq *req; |