summaryrefslogtreecommitdiff
path: root/src/FillPoly.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/FillPoly.c
parent605d357074d556a05a3fba2e85cbea36a3204248 (diff)
downloadxorg-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.c16
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;