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/FillPoly.c | |
parent | 605d357074d556a05a3fba2e85cbea36a3204248 (diff) | |
download | xorg-lib-libX11-a48386ce6b5f8fd2d9dc11a966c9bf5da59f3831.tar.gz |
Switched function definitions from K&R to ANSI style.
Diffstat (limited to 'src/FillPoly.c')
-rw-r--r-- | src/FillPoly.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/FillPoly.c b/src/FillPoly.c index 93884d79..b3a7f636 100644 --- a/src/FillPoly.c +++ b/src/FillPoly.c @@ -32,14 +32,14 @@ in this Software without prior written authorization from The Open Group. #include "Xlibint.h" int -XFillPolygon(dpy, d, gc, points, n_points, shape, mode) -register Display *dpy; -Drawable d; -GC gc; -XPoint *points; -int n_points; -int shape; -int mode; +XFillPolygon( + register Display *dpy, + Drawable d, + GC gc, + XPoint *points, + int n_points, + int shape, + int mode) { register xFillPolyReq *req; register long nbytes; |