summaryrefslogtreecommitdiff
path: root/src/GetPCnt.c
diff options
context:
space:
mode:
authorMagnus Kessler <Magnus.Kessler@gmx.net>2007-05-01 15:20:08 +0200
committerTilman Sauerbeck <tilman@code-monkey.de>2007-05-01 15:20:08 +0200
commita48386ce6b5f8fd2d9dc11a966c9bf5da59f3831 (patch)
treee842646f7797fc74070b1bd9ead7861b5b6b752d /src/GetPCnt.c
parent605d357074d556a05a3fba2e85cbea36a3204248 (diff)
Switched function definitions from K&R to ANSI style.
Diffstat (limited to 'src/GetPCnt.c')
-rw-r--r--src/GetPCnt.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/GetPCnt.c b/src/GetPCnt.c
index 0883abad..55a2f215 100644
--- a/src/GetPCnt.c
+++ b/src/GetPCnt.c
@@ -33,11 +33,12 @@ in this Software without prior written authorization from The Open Group.
#include "Xlibint.h"
int
-XGetPointerControl(dpy, accel_numer, accel_denom, threshold)
- register Display *dpy;
+XGetPointerControl(
+ register Display *dpy,
/* the following are return only vars */
- int *accel_numer, *accel_denom;
- int *threshold;
+ int *accel_numer,
+ int *accel_denom,
+ int *threshold)
{
xGetPointerControlReply rep;
xReq *req;