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/CrWindow.c | |
parent | 605d357074d556a05a3fba2e85cbea36a3204248 (diff) |
Switched function definitions from K&R to ANSI style.
Diffstat (limited to 'src/CrWindow.c')
-rw-r--r-- | src/CrWindow.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/CrWindow.c b/src/CrWindow.c index 9a15f2ec..d0b17a2a 100644 --- a/src/CrWindow.c +++ b/src/CrWindow.c @@ -30,14 +30,16 @@ in this Software without prior written authorization from The Open Group. #endif #include "Xlibint.h" -Window XCreateSimpleWindow(dpy, parent, x, y, width, height, - borderWidth, border, background) - register Display *dpy; - Window parent; - int x, y; - unsigned int width, height, borderWidth; - unsigned long border; - unsigned long background; +Window XCreateSimpleWindow( + register Display *dpy, + Window parent, + int x, + int y, + unsigned int width, + unsigned int height, + unsigned int borderWidth, + unsigned long border, + unsigned long background) { Window wid; register xCreateWindowReq *req; |