summaryrefslogtreecommitdiff
path: root/Build/source/texk/seetexk/fio.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2009-06-17 16:38:00 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2009-06-17 16:38:00 +0000
commitef6828db3f74d9c0ad7e0d9dff1e849a39bf90ff (patch)
tree2898b7310974bad5608830db80c53322e1fbff53 /Build/source/texk/seetexk/fio.c
parent69b31bc5a79ddff0b4b89009022ab9f3767069a9 (diff)
enable compiler warnings
use ANSI C functions prototypes avoid compiler warnings git-svn-id: svn://tug.org/texlive/trunk@13782 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/seetexk/fio.c')
-rw-r--r--Build/source/texk/seetexk/fio.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/Build/source/texk/seetexk/fio.c b/Build/source/texk/seetexk/fio.c
index b4ccf8974c1..0d5ff7c618e 100644
--- a/Build/source/texk/seetexk/fio.c
+++ b/Build/source/texk/seetexk/fio.c
@@ -5,10 +5,6 @@
* so long as this copyright notice remains intact.
*/
-#ifndef lint
-static char rcsid[] = "$Header: /usr/src/local/tex/local/mctex/lib/RCS/fio.c,v 2.4 89/08/22 21:50:31 chris Exp $";
-#endif
-
/*
* File I/O subroutines for getting bytes, words, 3bytes, and longwords.
* N.B.: these believe they are working on a DVI file.
@@ -27,8 +23,7 @@ static char eofmsg[] = "unexpected EOF, help";
#define make(name, func, signextend) \
i32 \
-name(fp) \
- register FILE *fp; \
+name(FILE *fp) \
{ \
register i32 n; \
\