shithub: riscv

Download patch

ref: 3625532d2d10aaf7e8d1b685b86d08a0a4cf6c89
parent: 036cff108ae5ae82a1d378493df631bb35876803
author: Jacob Moody <moody@posixcafe.org>
date: Sat Jul 22 23:45:01 EDT 2023

postscript: ansi-ify function declerations

--- a/sys/src/cmd/postscript/common/bbox.c
+++ b/sys/src/cmd/postscript/common/bbox.c
@@ -34,10 +34,7 @@
 
 /*****************************************************************************/
 
-cover(x, y)
-
-    double	x, y;
-
+cover(double x, double y)
 {
 
 /*
@@ -66,12 +63,7 @@
 
 /*****************************************************************************/
 
-writebbox(fp, keyword, slop)
-
-    FILE	*fp;			/* the comment is written here */
-    char	*keyword;		/* the boundingbox comment string */
-    int		slop;			/* expand (or contract?) the box a bit */
-
+writebbox(FILE *fp, char *keyword, int slop)
 {
 
     Bbox	ubbox;			/* user space bounding box */
@@ -118,10 +110,7 @@
 
 /*****************************************************************************/
 
-resetbbox(output)
-
-    int		output;
-
+resetbbox(int output)
 {
 
 /*
@@ -147,10 +136,7 @@
 
 /*****************************************************************************/
 
-scale(sx, sy)
-
-    double	sx, sy;
-
+scale(double sx, double sy)
 {
 
 /*
@@ -172,10 +158,7 @@
 
 /*****************************************************************************/
 
-translate(tx, ty)
-
-    double	tx, ty;
-
+translate(double tx, double ty)
 {
 
 /*
@@ -197,10 +180,7 @@
 
 /*****************************************************************************/
 
-rotate(angle)
-
-    double	angle;
-
+rotate(double angle)
 {
 
 /*
@@ -223,10 +203,7 @@
 
 /*****************************************************************************/
 
-concat(m1)
-
-    double	m1[];
-
+concat(double *m1)
 {
 
     double	m2[6];
--- a/sys/src/cmd/postscript/common/getopt.c
+++ b/sys/src/cmd/postscript/common/getopt.c
@@ -11,8 +11,7 @@
 char    *strchr();
 
 int
-getopt (argc, argv, opts)
-char **argv, *opts;
+getopt (int argc, char **argv, char *opts)
 {
 	static int sp = 1;
 	register c;
--- a/sys/src/cmd/postscript/common/misc.c
+++ b/sys/src/cmd/postscript/common/misc.c
@@ -18,10 +18,7 @@
 
 /*****************************************************************************/
 
-out_list(str)
-
-    char	*str;
-
+out_list(char *str)
 {
 
     int		start, stop;
@@ -54,10 +51,7 @@
 
 /*****************************************************************************/
 
-in_olist(num)
-
-    int		num;
-
+in_olist(int num)
 {
 
     int		i;
@@ -81,10 +75,7 @@
 
 /*****************************************************************************/
 
-setencoding(name)
-
-    char	*name;
-
+setencoding(char *name)
 {
 
     char	path[150];
@@ -111,10 +102,7 @@
 
 /*****************************************************************************/
 
-cat(file)
-
-    char	*file;
-
+cat(char *file)
 {
 
     int		fd_in;
@@ -145,11 +133,7 @@
 
 /*****************************************************************************/
 
-str_convert(str, err)
-
-    char	**str;
-    int		err;
-
+str_convert(char **str, int err)
 {
 
     int		i;
@@ -173,12 +157,7 @@
 
 /*****************************************************************************/
 
-error(kind, mesg, a1, a2, a3)
-
-    int		kind;
-    char	*mesg;
-    unsigned	a1, a2, a3;
-
+error(int kind, char *mesg, unsigned int a1, unsigned int a2, unsigned int a3)
 {
 
 /*
@@ -207,10 +186,7 @@
 
 /*****************************************************************************/
 
-void interrupt(sig)
-
-    int		sig;
-
+void interrupt(int sig)
 {
 
 /*
--- a/sys/src/cmd/postscript/common/request.c
+++ b/sys/src/cmd/postscript/common/request.c
@@ -22,10 +22,7 @@
 
 /*****************************************************************************/
 
-saverequest(want)
-
-    char	*want;			/* grab code for this stuff */
-
+saverequest(char *want)
 {
 
     char	*page;			/* and save it for this page */
@@ -56,11 +53,7 @@
 
 /*****************************************************************************/
 
-writerequest(page, fp_out)
-
-    int		page;			/* write everything for this page */
-    FILE	*fp_out;		/* to this file */
-
+writerequest(int page, FILE *fp_out)
 {
 
     int		i;			/* loop index */
@@ -80,12 +73,7 @@
 
 /*****************************************************************************/
 
-dumprequest(want, file, fp_out)
-
-    char	*want;			/* look for this string */
-    char	*file;			/* in this file */
-    FILE	*fp_out;		/* and write the value out here */
-
+dumprequest(char *want, char *file, FILE *fp_out)
 {
 
     char	buf[100];		/* line buffer for reading *file */
--- a/sys/src/cmd/postscript/cropmarks/mkfile
+++ b/sys/src/cmd/postscript/cropmarks/mkfile
@@ -4,6 +4,8 @@
 
 all:V:	cropmarks
 
+default:V:	cropmarks
+
 install:V:	$POSTBIN/cropmarks $POSTLIB/cropmarks.ps
 
 installall:V:	install
--- a/sys/src/cmd/postscript/download/download.c
+++ b/sys/src/cmd/postscript/download/download.c
@@ -85,11 +85,7 @@
 
 /*****************************************************************************/
 
-main(agc, agv)
-
-    int		agc;
-    char	*agv[];
-
+main(int agc, char *agv[])
 {
 
 /*
@@ -116,7 +112,7 @@
 
 /*****************************************************************************/
 
-init_signals()
+init_signals(void)
 
 {
 
@@ -141,7 +137,7 @@
 
 /*****************************************************************************/
 
-options()
+options(void)
 
 {
 
@@ -212,7 +208,7 @@
 
 /*****************************************************************************/
 
-readmap()
+readmap(void)
 
 {
 
@@ -275,7 +271,7 @@
 
 /*****************************************************************************/
 
-readresident()
+readresident(void)
 
 {
 
@@ -314,7 +310,7 @@
 
 /*****************************************************************************/
 
-arguments()
+arguments(void)
 
 {
 
@@ -350,7 +346,7 @@
 
 /*****************************************************************************/
 
-done()
+done(void)
 
 {
 
@@ -367,7 +363,7 @@
 
 /*****************************************************************************/
 
-download()
+download(void)
 
 {
 
@@ -416,10 +412,7 @@
 
 /*****************************************************************************/
 
-copyfonts(list)
-
-    char	*list;
-
+copyfonts(char *list)
 {
 
     char	*font;
@@ -458,7 +451,7 @@
 
 /*****************************************************************************/
 
-copyinput()
+copyinput(void)
 
 {
 
@@ -486,10 +479,7 @@
 
 /*****************************************************************************/
 
-lookup(font)
-
-    char	*font;
-
+lookup(char *font)
 {
 
     int		i;
@@ -514,11 +504,7 @@
 
 /*****************************************************************************/
 
-Map *allocate(ptr, num)
-
-    Map		*ptr;
-    int		num;
-
+Map *allocate(Map *ptr, int num)
 {
 
 /*
--- a/sys/src/cmd/postscript/postgif/postgif.c
+++ b/sys/src/cmd/postscript/postgif/postgif.c
@@ -52,8 +52,7 @@
 FILE *fp_out = stdout;
 
 char *
-allocate(size)
-    int size;
+allocate(int size)
 {
     char *p;
 
@@ -62,9 +61,7 @@
 }
 
 void
-puthex(c, fp)
-    unsigned char c;
-    FILE *fp;
+puthex(unsigned char c, FILE *fp)
 {
     static char hextbl[16] = {
 	'0', '1', '2', '3', '4', '5', '6', '7',
@@ -76,8 +73,7 @@
 }
 
 void
-setcolormap(bp)
-    int bp;
+setcolormap(int bp)
 {
     int i, entries = 1, scale = 1;
     unsigned char *p, *q;
@@ -108,8 +104,7 @@
 }
 
 void
-readgcolormap(bp)
-    int bp;
+readgcolormap(int bp)
 {
     int i, entries = 1;
     unsigned char *p, *q;
@@ -132,8 +127,7 @@
 }
 
 void
-readlcolormap(bp)
-    int bp;
+readlcolormap(int bp)
 {
     int i, entries = 1;
     unsigned char *p, *q;
@@ -156,7 +150,7 @@
 }
 
 void
-initstbl()
+initstbl(void)
 {
     int i, entries = 1, *p, *s;
 
@@ -174,7 +168,7 @@
 }
 
 int
-nextbyte()
+nextbyte(void)
 {
     static ibufindex;
 
@@ -202,7 +196,7 @@
 };
 
 int
-getcode()
+getcode(void)
 {
     int cs, c;
     static int oldc;
@@ -221,8 +215,7 @@
 }
 
 void
-putcode(c)
-    int c;
+putcode(int c)
 {
     if (prefix[c] != endcode) {
 	putcode(prefix[c]);
@@ -236,8 +229,7 @@
 }
 
 int
-firstof(c)
-    int c;
+firstof(int c)
 {
     while (prefix[c] != endcode) c = prefix[c];
     return(suffix[c]);
@@ -244,7 +236,7 @@
 }
 
 void
-writeimage()
+writeimage(void)
 {
     int i, j, k;
 
@@ -354,7 +346,7 @@
 }
 
 void
-readimage()
+readimage(void)
 {
     int bytecount, zerobytecount = 0;
     int code, oldcode;
@@ -433,7 +425,7 @@
 }
 
 void
-readextensionblock()
+readextensionblock(void)
 {
     int functioncode, bytecount, zerobytecount = 0;
 
@@ -450,7 +442,7 @@
 }
 
 void
-writebgscr()
+writebgscr(void)
 {
     fprintf(fp_out, "%s %d %d\n", PAGE, page, printed+1);
     fputs("/saveobj save def\n", fp_out);
@@ -462,7 +454,7 @@
 }
 
 void
-writeendscr()
+writeendscr(void)
 {
     if ( fp_out == stdout ) printed++;
     fputs("showpage\n", fp_out);
@@ -471,8 +463,7 @@
 }
 
 void
-redirect(pg)
-    int		pg;			/* next page we're printing */
+redirect(int pg)
 {
     static FILE	*fp_null = NULL;	/* if output is turned off */
 
@@ -484,7 +475,7 @@
 }
 
 void
-readgif()
+readgif(void)
 {
     int i, j, k;
 
@@ -540,7 +531,7 @@
 }
 
 void
-init_signals()
+init_signals(void)
 {
 
     if ( signal(SIGINT, interrupt) == SIG_IGN )  {
@@ -557,7 +548,7 @@
 }
 
 void
-header()
+header(void)
 {
     int         ch;                     /* return value from getopt() */
     int         old_optind = optind;    /* for restoring optind - should be 1 */
@@ -586,7 +577,7 @@
 }
 
 void
-options()
+options(void)
 {
     int		ch;			/* return value from getopt() */
 
@@ -688,7 +679,7 @@
 }
 
 void
-setup()
+setup(void)
 {
     /*setencoding(fontencoding);*/
     fprintf(stdout, "setup\n");
@@ -705,7 +696,7 @@
 }
 
 void
-arguments()
+arguments(void)
 {
     if ( argc < 1 ) {
 	fp_in = stdin;
@@ -727,7 +718,7 @@
 }
 
 void
-done()
+done(void)
 {
     fprintf(stdout, "%s", TRAILER);
     fprintf(stdout, "done\n");
@@ -735,9 +726,7 @@
     fprintf(stdout, "%s %d\n", PAGES, printed); 
 }
 
-main(agc, agv)
-    int agc;
-    char *agv[];
+main(int agc, char *agv[])
 {
     argc = agc;
     argv = agv;
--- a/sys/src/cmd/postscript/postprint/postprint.c
+++ b/sys/src/cmd/postscript/postprint/postprint.c
@@ -125,11 +125,7 @@
 
 /*****************************************************************************/
 
-main(agc, agv)
-
-    int		agc;
-    char	*agv[];
-
+main(int agc, char *agv[])
 {
 
 /*
@@ -158,7 +154,7 @@
 
 /*****************************************************************************/
 
-init_signals()
+init_signals(void)
 
 {
 
@@ -183,7 +179,7 @@
 
 /*****************************************************************************/
 
-header()
+header(void)
 
 {
 
@@ -230,7 +226,7 @@
 
 /*****************************************************************************/
 
-options()
+options(void)
 
 {
 
@@ -365,10 +361,7 @@
 
 /*****************************************************************************/
 
-char *get_font(name)
-
-    char	*name;			/* name the user asked for */
-
+char *get_font(char *name)
 {
 
     int		i;			/* for looking through fontmap[] */
@@ -392,7 +385,7 @@
 
 /*****************************************************************************/
 
-setup()
+setup(void)
 
 {
 
@@ -425,7 +418,7 @@
 
 /*****************************************************************************/
 
-arguments()
+arguments(void)
 
 {
 
@@ -478,7 +471,7 @@
 
 /*****************************************************************************/
 
-account()
+account(void)
 
 {
 
@@ -550,7 +543,7 @@
 
 /*****************************************************************************/
 
-formfeed()
+formfeed(void)
 
 {
 
@@ -595,7 +588,7 @@
 
 /*****************************************************************************/
 
-newline()
+newline(void)
 
 {
 
@@ -616,10 +609,7 @@
 
 /*****************************************************************************/
 
-spaces(ch)
-
-    int		ch;			/* next input character */
-
+spaces(int ch)
 {
 
     int		endcol;			/* ending column */
@@ -671,7 +661,7 @@
 
 /*****************************************************************************/
 
-startline()
+startline(void)
 
 {
 
@@ -693,7 +683,7 @@
 
 /*****************************************************************************/
 
-endstring()
+endstring(void)
 
 {
 
@@ -715,7 +705,7 @@
 
 /*****************************************************************************/
 
-endline()
+endline(void)
 
 {
 
@@ -739,10 +729,7 @@
 
 /*****************************************************************************/
 
-oput(ch)
-
-    int		ch;			/* next output character */
-
+oput(int ch)
 {
 
 /*
@@ -768,10 +755,7 @@
 
 /*****************************************************************************/
 
-redirect(pg)
-
-    int		pg;			/* next page we're printing */
-
+redirect(int pg)
 {
 
     static FILE	*fp_null = NULL;	/* if output is turned off */
--- a/sys/src/cmd/postscript/postreverse/postreverse.c
+++ b/sys/src/cmd/postscript/postreverse/postreverse.c
@@ -103,11 +103,7 @@
 
 /*****************************************************************************/
 
-main(agc, agv)
-
-    int		agc;
-    char	*agv[];
-
+main(int agc, char *agv[])
 {
 
 /*
@@ -136,7 +132,7 @@
 
 /*****************************************************************************/
 
-init_signals()
+init_signals(void)
 
 {
 
@@ -161,7 +157,7 @@
 
 /*****************************************************************************/
 
-options()
+options(void)
 
 {
 
@@ -229,7 +225,7 @@
 
 /*****************************************************************************/
 
-arguments()
+arguments(void)
 
 {
 
@@ -259,7 +255,7 @@
 
 /*****************************************************************************/
 
-done()
+done(void)
 
 {
 
@@ -277,7 +273,7 @@
 
 /*****************************************************************************/
 
-char *copystdin()
+char *copystdin(void)
 
 {
 
@@ -315,7 +311,7 @@
 
 /*****************************************************************************/
 
-reverse()
+reverse(void)
 
 {
 
@@ -345,10 +341,7 @@
 
 /*****************************************************************************/
 
-moreprolog(str)
-
-    char	*str;			/* copy everything up to this string */
-
+moreprolog(char *str)
 {
 
     int		len;			/* length of FORMSPERPAGE string */
@@ -383,7 +376,7 @@
 
 /*****************************************************************************/
 
-readpages()
+readpages(void)
 
 {
 
@@ -448,7 +441,7 @@
 
 /*****************************************************************************/
 
-writepages()
+writepages(void)
 
 {
 
@@ -491,11 +484,7 @@
 
 /*****************************************************************************/
 
-copypage(start, stop)
-
-    long	start;			/* starting from this offset */
-    long	stop;			/* and ending here */
-
+copypage(long start, long stop)
 {
 
 /*
@@ -517,7 +506,7 @@
 
 /*****************************************************************************/
 
-trailer()
+trailer(void)
 
 {
 
--- a/sys/src/cmd/postscript/posttek/posttek.c
+++ b/sys/src/cmd/postscript/posttek/posttek.c
@@ -150,11 +150,7 @@
 
 /*****************************************************************************/
 
-main(agc, agv)
-
-    int		agc;
-    char	*agv[];
-
+main(int agc, char *agv[])
 {
 
 /*
@@ -184,7 +180,7 @@
 
 /*****************************************************************************/
 
-init_signals()
+init_signals(void)
 
 {
 
@@ -209,7 +205,7 @@
 
 /*****************************************************************************/
 
-header()
+header(void)
 
 {
 
@@ -253,7 +249,7 @@
 
 /*****************************************************************************/
 
-options()
+options(void)
 
 {
 
@@ -367,10 +363,7 @@
 
 /*****************************************************************************/
 
-char *get_font(name)
-
-    char	*name;			/* name the user asked for */
-
+char *get_font(char *name)
 {
 
     int		i;			/* for looking through fontmap[] */
@@ -393,7 +386,7 @@
 
 /*****************************************************************************/
 
-setup()
+setup(void)
 
 {
 
@@ -420,7 +413,7 @@
 
 /*****************************************************************************/
 
-arguments()
+arguments(void)
 
 {
 
@@ -452,7 +445,7 @@
 
 /*****************************************************************************/
 
-done()
+done(void)
 
 {
 
@@ -473,7 +466,7 @@
 
 /*****************************************************************************/
 
-account()
+account(void)
 
 {
 
@@ -491,10 +484,7 @@
 
 /*****************************************************************************/
 
-statemachine(fp)
-
-    FILE	*fp;			/* used to set fp_in */
-
+statemachine(FILE *fp)
 {
 
 /*
@@ -544,7 +534,7 @@
 
 /*****************************************************************************/
 
-reset()
+reset(void)
 
 {
 
@@ -563,7 +553,7 @@
 
 /*****************************************************************************/
 
-alpha()
+alpha(void)
 
 {
 
@@ -648,7 +638,7 @@
 
 /*****************************************************************************/
 
-graph()
+graph(void)
 
 {
 
@@ -723,7 +713,7 @@
 
 /*****************************************************************************/
 
-point()
+point(void)
 
 {
 
@@ -751,7 +741,7 @@
 
 /*****************************************************************************/
 
-incremental()
+incremental(void)
 
 {
 
@@ -795,7 +785,7 @@
 
 /*****************************************************************************/
 
-gin()
+gin(void)
 
 {
 
@@ -811,10 +801,7 @@
 
 /*****************************************************************************/
 
-control(c)
-
-    int		c;			/* check this control character */
-
+control(int c)
 {
 
 /*
@@ -887,7 +874,7 @@
 
 /*****************************************************************************/
 
-esc()
+esc(void)
 
 {
 
@@ -975,10 +962,7 @@
 
 /*****************************************************************************/
 
-move(x, y)
-
-    int		x, y;			/* move the cursor here */
-
+move(int x, int y)
 {
 
 /*
@@ -994,10 +978,7 @@
 
 /*****************************************************************************/
 
-setmode(mode)
-
-    int		mode;			/* this should be the new mode */
-
+setmode(int mode)
 {
 
 /*
@@ -1026,7 +1007,7 @@
 
 /*****************************************************************************/
 
-home()
+home(void)
 
 {
 
@@ -1043,10 +1024,7 @@
 
 /*****************************************************************************/
 
-setfont(newfont)
-
-    int		newfont;		/* use this font next */
-
+setfont(int newfont)
 {
 
 /*
@@ -1067,7 +1045,7 @@
 
 /*****************************************************************************/
 
-text()
+text(void)
 
 {
 
@@ -1086,7 +1064,7 @@
 
 /*****************************************************************************/
 
-draw()
+draw(void)
 
 {
 
@@ -1108,7 +1086,7 @@
 
 /*****************************************************************************/
 
-formfeed()
+formfeed(void)
 
 {
 
@@ -1148,7 +1126,7 @@
 
 /*****************************************************************************/
 
-nextchar()
+nextchar(void)
 
 {
 
@@ -1173,10 +1151,7 @@
 
 /*****************************************************************************/
 
-redirect(pg)
-
-    int		pg;			/* next page we're printing */
-
+redirect(int pg)
 {
 
     static FILE	*fp_null = NULL;	/* if output is turned off */