summaryrefslogtreecommitdiff
path: root/utils/unlit
diff options
context:
space:
mode:
Diffstat (limited to 'utils/unlit')
-rw-r--r--utils/unlit/unlit.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/utils/unlit/unlit.c b/utils/unlit/unlit.c
index 1269b81463..76877bec15 100644
--- a/utils/unlit/unlit.c
+++ b/utils/unlit/unlit.c
@@ -121,8 +121,7 @@ void myputc(char c, FILE *ostream)
/* As getc, but does TAB expansion */
int
-egetc(istream)
-FILE *istream;
+egetc(FILE *istream)
{
static int spleft = 0;
static int linepos = 0;
@@ -170,8 +169,7 @@ FILE *istream;
* stream.
*/
-line readline(istream,ostream)
-FILE *istream, *ostream; {
+line readline(FILE *istream, FILE *ostream) {
int c, c1;
char buf[100];
int i;