diff options
Diffstat (limited to 'mi/midash.c')
-rw-r--r-- | mi/midash.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/mi/midash.c b/mi/midash.c index 95a19c295..40c741b44 100644 --- a/mi/midash.c +++ b/mi/midash.c @@ -53,12 +53,13 @@ SOFTWARE. #include "mifpoly.h" _X_EXPORT void -miStepDash (dist, pDashIndex, pDash, numInDashList, pDashOffset) - int dist; /* distance to step */ - int *pDashIndex; /* current dash */ - unsigned char *pDash; /* dash list */ - int numInDashList; /* total length of dash list */ - int *pDashOffset; /* offset into current dash */ +miStepDash ( + int dist, /* distance to step */ + int *pDashIndex, /* current dash */ + unsigned char *pDash, /* dash list */ + int numInDashList, /* total length of dash list */ + int *pDashOffset /* offset into current dash */ + ) { int dashIndex, dashOffset; int totallen; |