summaryrefslogtreecommitdiff
path: root/do_complex.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2014-03-05 19:11:25 -0800
committerKeith Packard <keithp@keithp.com>2014-03-05 19:18:44 -0800
commitf640487e27a3904831ff85033a2869e981e9d942 (patch)
tree48a3235a42e957f8062f23925e719b70b94a6b12 /do_complex.c
parent9ba0ce7d849bbd94644664b60b50bd1e2d5813b7 (diff)
Switch to 64-bit ints
Diffstat (limited to 'do_complex.c')
-rw-r--r--do_complex.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/do_complex.c b/do_complex.c
index 3eac738..88f1d4f 100644
--- a/do_complex.c
+++ b/do_complex.c
@@ -36,7 +36,7 @@ static GC pgc;
#endif /* QNX4 */
int
-InitComplexPoly(XParms xp, Parms p, int reps)
+InitComplexPoly(XParms xp, Parms p, int64_t reps)
{
int i, j, numPoints;
int x, y;
@@ -96,7 +96,7 @@ InitComplexPoly(XParms xp, Parms p, int reps)
}
void
-DoComplexPoly(XParms xp, Parms p, int reps)
+DoComplexPoly(XParms xp, Parms p, int64_t reps)
{
int i, j;
XPoint *curPoint;
@@ -123,7 +123,7 @@ EndComplexPoly(XParms xp, Parms p)
}
int
-InitGeneralPoly(XParms xp, Parms p, int reps)
+InitGeneralPoly(XParms xp, Parms p, int64_t reps)
{
int i, j, numPoints;
int nsides;
@@ -169,7 +169,7 @@ InitGeneralPoly(XParms xp, Parms p, int reps)
}
void
-DoGeneralPoly(XParms xp, Parms p, int reps)
+DoGeneralPoly(XParms xp, Parms p, int64_t reps)
{
int i, j;
int nsides;