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/GrKeybd.c | |
parent | 605d357074d556a05a3fba2e85cbea36a3204248 (diff) |
Switched function definitions from K&R to ANSI style.
Diffstat (limited to 'src/GrKeybd.c')
-rw-r--r-- | src/GrKeybd.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/GrKeybd.c b/src/GrKeybd.c index af587926..e4ea053a 100644 --- a/src/GrKeybd.c +++ b/src/GrKeybd.c @@ -30,12 +30,13 @@ in this Software without prior written authorization from The Open Group. #include <config.h> #endif #include "Xlibint.h" -int XGrabKeyboard (dpy, window, ownerEvents, pointerMode, keyboardMode, time) - register Display *dpy; - Window window; - Bool ownerEvents; - int pointerMode, keyboardMode; - Time time; +int XGrabKeyboard ( + register Display *dpy, + Window window, + Bool ownerEvents, + int pointerMode, + int keyboardMode, + Time time) { xGrabKeyboardReply rep; register xGrabKeyboardReq *req; |