diff options
Diffstat (limited to 'xorg-server/mi/midash.c')
-rw-r--r-- | xorg-server/mi/midash.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/xorg-server/mi/midash.c b/xorg-server/mi/midash.c index 95a19c295..ba64d354f 100644 --- a/xorg-server/mi/midash.c +++ b/xorg-server/mi/midash.c @@ -52,13 +52,14 @@ SOFTWARE. #include "mistruct.h" #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 */ +void +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; |