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/ping.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/ping.c')
-rw-r--r-- | lib/libICE/src/ping.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/libICE/src/ping.c b/lib/libICE/src/ping.c index 45329b6f5..04fe73571 100644 --- a/lib/libICE/src/ping.c +++ b/lib/libICE/src/ping.c @@ -34,12 +34,11 @@ Author: Ralph Mor, X Consortium #include "ICElibint.h" Status -IcePing (iceConn, pingReplyProc, clientData) - -IceConn iceConn; -IcePingReplyProc pingReplyProc; -IcePointer clientData; - +IcePing ( + IceConn iceConn, + IcePingReplyProc pingReplyProc, + IcePointer clientData +) { _IcePingWait *newping = (_IcePingWait *) malloc (sizeof (_IcePingWait)); _IcePingWait *ptr = iceConn->ping_waits; |