summaryrefslogtreecommitdiff
path: root/utils/hp2ps/Marks.c
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2011-08-01 01:07:12 +0100
committerIan Lynagh <igloo@earth.li>2011-08-01 01:07:12 +0100
commit96ebe2fa43b9ee98cd82d31760c57db0fea18495 (patch)
tree93e6995b75c08c84f2e7fc908ec3634cd64b0e92 /utils/hp2ps/Marks.c
parentb4a01788a1a833de64cba041c796fa35e0275220 (diff)
downloadhaskell-96ebe2fa43b9ee98cd82d31760c57db0fea18495.tar.gz
Remove some antiquated C constructs
Fixes validate on amd64/Linux with: SRC_CC_OPTS += -Wmissing-parameter-type SRC_CC_OPTS += -Wold-style-declaration SRC_CC_OPTS += -Wold-style-definition
Diffstat (limited to 'utils/hp2ps/Marks.c')
-rw-r--r--utils/hp2ps/Marks.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/utils/hp2ps/Marks.c b/utils/hp2ps/Marks.c
index 8d6f924e17..feb341ee03 100644
--- a/utils/hp2ps/Marks.c
+++ b/utils/hp2ps/Marks.c
@@ -10,7 +10,7 @@
static void Caret PROTO((floatish, floatish, floatish));
void
-Marks()
+Marks(void)
{
intish i;
floatish m;
@@ -27,8 +27,7 @@ Marks()
*/
static void
-Caret(x,y,d)
- floatish x; floatish y; floatish d;
+Caret(floatish x, floatish y, floatish d)
{
fprintf(psfp, "%f %f moveto\n", x - d, y);
fprintf(psfp, "%f %f rlineto\n", d, -d);