diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-04-09 20:29:46 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-04-09 20:29:46 +0000 |
commit | 5c72c70268d9966794ec1e525e2a8f97b7451d7f (patch) | |
tree | 510cb376bc5303401a8531a884b272e82b221830 /lib/libICE/src/replywait.c | |
parent | 34effda01103f55888704a1c1cca2d2c558be93b (diff) |
Update to libICE 1.0.5.
Main change: ansification.
Bumped major since some symbols which were not part of the public API
have been changed to 'static'.
Diffstat (limited to 'lib/libICE/src/replywait.c')
-rw-r--r-- | lib/libICE/src/replywait.c | 36 |
1 files changed, 16 insertions, 20 deletions
diff --git a/lib/libICE/src/replywait.c b/lib/libICE/src/replywait.c index e00eb9285..4e9ee1663 100644 --- a/lib/libICE/src/replywait.c +++ b/lib/libICE/src/replywait.c @@ -35,11 +35,10 @@ Author: Ralph Mor, X Consortium void -_IceAddReplyWait (iceConn, replyWait) - -IceConn iceConn; -IceReplyWaitInfo *replyWait; - +_IceAddReplyWait ( + IceConn iceConn, + IceReplyWaitInfo *replyWait +) { /* * Add this replyWait to the end of the list (only if the @@ -77,11 +76,10 @@ IceReplyWaitInfo *replyWait; IceReplyWaitInfo * -_IceSearchReplyWaits (iceConn, majorOpcode) - -IceConn iceConn; -int majorOpcode; - +_IceSearchReplyWaits ( + IceConn iceConn, + int majorOpcode +) { /* * Return the first replyWait in the list with the given majorOpcode @@ -101,11 +99,10 @@ int majorOpcode; void -_IceSetReplyReady (iceConn, replyWait) - -IceConn iceConn; -IceReplyWaitInfo *replyWait; - +_IceSetReplyReady ( + IceConn iceConn, + IceReplyWaitInfo *replyWait +) { /* * The replyWait specified has a reply ready. @@ -123,11 +120,10 @@ IceReplyWaitInfo *replyWait; Bool -_IceCheckReplyReady (iceConn, replyWait) - -IceConn iceConn; -IceReplyWaitInfo *replyWait; - +_IceCheckReplyReady ( + IceConn iceConn, + IceReplyWaitInfo *replyWait +) { _IceSavedReplyWait *savedReplyWait = iceConn->saved_reply_waits; _IceSavedReplyWait *prev = NULL; |