diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2018-02-15 15:14:14 +0100 |
---|---|---|
committer | Mihai Moldovan <ionic@ionic.de> | 2018-02-26 00:58:46 +0100 |
commit | 7aca428ffe10b2cffca8fe01962aef421a5a5645 (patch) | |
tree | 959c5d4ada874c816f49888825edeeba3f005b24 /nx-X11/programs/Xserver/Xi/setbmap.c | |
parent | 41a0ba729fb67efdc5f7bd50f73f145cf5d8a153 (diff) | |
download | nx-libs-7aca428ffe10b2cffca8fe01962aef421a5a5645.tar.gz nx-libs-7aca428ffe10b2cffca8fe01962aef421a5a5645.tar.bz2 nx-libs-7aca428ffe10b2cffca8fe01962aef421a5a5645.zip |
Xi: ansify function prototypes
Diffstat (limited to 'nx-X11/programs/Xserver/Xi/setbmap.c')
-rw-r--r-- | nx-X11/programs/Xserver/Xi/setbmap.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/nx-X11/programs/Xserver/Xi/setbmap.c b/nx-X11/programs/Xserver/Xi/setbmap.c index eb3fc17db..7bdbe9522 100644 --- a/nx-X11/programs/Xserver/Xi/setbmap.c +++ b/nx-X11/programs/Xserver/Xi/setbmap.c @@ -77,8 +77,7 @@ SOFTWARE. */ int -SProcXSetDeviceButtonMapping(client) - register ClientPtr client; +SProcXSetDeviceButtonMapping(register ClientPtr client) { REQUEST(xSetDeviceButtonMappingReq); swaps(&stuff->length); @@ -92,8 +91,7 @@ SProcXSetDeviceButtonMapping(client) */ int -ProcXSetDeviceButtonMapping (client) - register ClientPtr client; +ProcXSetDeviceButtonMapping(register ClientPtr client) { int ret; xSetDeviceButtonMappingReply rep; @@ -151,10 +149,8 @@ ProcXSetDeviceButtonMapping (client) */ void -SRepXSetDeviceButtonMapping (client, size, rep) - ClientPtr client; - int size; - xSetDeviceButtonMappingReply *rep; +SRepXSetDeviceButtonMapping(ClientPtr client, int size, + xSetDeviceButtonMappingReply * rep) { swaps(&rep->sequenceNumber); swapl(&rep->length); |