diff options
Diffstat (limited to 'nx-X11/lib/X11/RestackWs.c')
-rw-r--r-- | nx-X11/lib/X11/RestackWs.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/nx-X11/lib/X11/RestackWs.c b/nx-X11/lib/X11/RestackWs.c index a3ddd7211..b2a77fcdf 100644 --- a/nx-X11/lib/X11/RestackWs.c +++ b/nx-X11/lib/X11/RestackWs.c @@ -30,11 +30,11 @@ in this Software without prior written authorization from The Open Group. #include "Xlibint.h" int -XRestackWindows (dpy, windows, n) - register Display *dpy; - register Window *windows; - int n; - { +XRestackWindows ( + register Display *dpy, + register Window *windows, + int n) +{ int i = 0; LockDisplay(dpy); @@ -50,12 +50,10 @@ XRestackWindows (dpy, windows, n) *values++ = *(windows-1); *values = Below; } - } + } UnlockDisplay(dpy); SyncHandle(); return 1; } - - |