diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-05-18 19:37:37 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-05-18 19:37:37 +0000 |
commit | ed8b5dc3d5426f4774308a46ca2835134844f28e (patch) | |
tree | 6a84e81f8ccf7faf4497c80e83bfc921a532648f /lib/libX11/src/Pending.c | |
parent | b10ed8a977078fdc40846586222217fa9255196d (diff) |
Update to libX11 1.3.3. Tested on a bulk ports build by naddy@.
Diffstat (limited to 'lib/libX11/src/Pending.c')
-rw-r--r-- | lib/libX11/src/Pending.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/libX11/src/Pending.c b/lib/libX11/src/Pending.c index 480ec6cf0..eb97060ca 100644 --- a/lib/libX11/src/Pending.c +++ b/lib/libX11/src/Pending.c @@ -1,4 +1,3 @@ -/* $Xorg: Pending.c,v 1.4 2001/02/09 02:03:35 xorgcvs Exp $ */ /* Copyright 1986, 1998 The Open Group @@ -32,9 +31,9 @@ in this Software without prior written authorization from The Open Group. /* Read in pending events if needed and return the number of queued events. */ -int XEventsQueued (dpy, mode) - register Display *dpy; - int mode; +int XEventsQueued ( + register Display *dpy, + int mode) { int ret_val; LockDisplay(dpy); @@ -46,8 +45,7 @@ int XEventsQueued (dpy, mode) return ret_val; } -int XPending (dpy) - register Display *dpy; +int XPending (register Display *dpy) { int ret_val; LockDisplay(dpy); |