summaryrefslogtreecommitdiff
path: root/src/CrWindow.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/CrWindow.c
parent605d357074d556a05a3fba2e85cbea36a3204248 (diff)
Switched function definitions from K&R to ANSI style.
Diffstat (limited to 'src/CrWindow.c')
-rw-r--r--src/CrWindow.c18
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;