summaryrefslogtreecommitdiff
path: root/xc/programs/Xserver/mi/midash.c
diff options
context:
space:
mode:
Diffstat (limited to 'xc/programs/Xserver/mi/midash.c')
-rw-r--r--xc/programs/Xserver/mi/midash.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/xc/programs/Xserver/mi/midash.c b/xc/programs/Xserver/mi/midash.c
index 4ca5cf75a..d11b17976 100644
--- a/xc/programs/Xserver/mi/midash.c
+++ b/xc/programs/Xserver/mi/midash.c
@@ -1,3 +1,4 @@
+/* $XFree86: xc/programs/Xserver/mi/midash.c,v 1.3 2001/08/06 21:46:04 dawes Exp $ */
/***********************************************************
Copyright 1987, 1998 The Open Group
@@ -45,7 +46,7 @@ SOFTWARE.
#include "mistruct.h"
#include "mifpoly.h"
-static miDashPtr CheckDashStorage();
+static miDashPtr CheckDashStorage(miDashPtr *ppseg, int nseg, int *pnsegMax);
/* return a list of DashRec. there will be an extra
entry at the end holding the last point of the polyline.
@@ -246,10 +247,10 @@ necessary. this interface seems unnecessarily cumbersome.
static
miDashPtr
-CheckDashStorage(ppseg, nseg, pnsegMax)
-miDashPtr *ppseg; /* base pointer */
-int nseg; /* number of segment we want to write to */
-int *pnsegMax; /* size (in segments) of list so far */
+CheckDashStorage(
+ miDashPtr *ppseg, /* base pointer */
+ int nseg, /* number of segment we want to write to */
+ int *pnsegMax) /* size (in segments) of list so far */
{
if (nseg > *pnsegMax)
{