diff options
author | Magnus Kessler <Magnus.Kessler@gmx.net> | 2007-05-01 15:20:08 +0200 |
---|---|---|
committer | Tilman Sauerbeck <tilman@code-monkey.de> | 2007-05-01 15:20:08 +0200 |
commit | a48386ce6b5f8fd2d9dc11a966c9bf5da59f3831 (patch) | |
tree | e842646f7797fc74070b1bd9ead7861b5b6b752d /src/GetMoEv.c | |
parent | 605d357074d556a05a3fba2e85cbea36a3204248 (diff) |
Switched function definitions from K&R to ANSI style.
Diffstat (limited to 'src/GetMoEv.c')
-rw-r--r-- | src/GetMoEv.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/GetMoEv.c b/src/GetMoEv.c index e332ecfe..2aa6c1a6 100644 --- a/src/GetMoEv.c +++ b/src/GetMoEv.c @@ -31,11 +31,12 @@ in this Software without prior written authorization from The Open Group. #endif #include "Xlibint.h" -XTimeCoord *XGetMotionEvents(dpy, w, start, stop, nEvents) - register Display *dpy; - Time start, stop; - Window w; - int *nEvents; /* RETURN */ +XTimeCoord *XGetMotionEvents( + register Display *dpy, + Time start, + Time stop, + Window w, + int *nEvents) /* RETURN */ { xGetMotionEventsReply rep; register xGetMotionEventsReq *req; |