summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/lib.h
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2010-05-15 02:50:43 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2010-05-15 02:50:43 +0000
commitf751cdbc44151416e0e7ad3b8d6e55898f2030ef (patch)
tree229255ef3578d8bf21cd559f6bb28a1b906c6a81 /Build/source/texk/kpathsea/lib.h
parent7c7fd723c7ab7cad6a302ebc0560ced54b5d3d41 (diff)
avoid late declaration.
git-svn-id: svn://tug.org/texlive/trunk@18279 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/lib.h')
-rw-r--r--Build/source/texk/kpathsea/lib.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Build/source/texk/kpathsea/lib.h b/Build/source/texk/kpathsea/lib.h
index 25abea3e41e..ca1644c94fa 100644
--- a/Build/source/texk/kpathsea/lib.h
+++ b/Build/source/texk/kpathsea/lib.h
@@ -202,11 +202,11 @@ extern KPSEDLL int kpathsea_dir_links (kpathsea kpse, const_string fn,
/* Like their stdio counterparts, but abort on error, after calling
perror(3) with FILENAME as its argument. */
extern KPSEDLL FILE *xfopen (const_string filename, const_string mode);
-extern KPSEDLL void xfclose (FILE *, const_string filename);
-extern KPSEDLL void xfseek (FILE *, long, int, const_string filename);
-extern KPSEDLL void xfseeko (FILE *, off_t, int, const_string filename);
-extern KPSEDLL unsigned long xftell (FILE *, const_string filename);
-extern KPSEDLL off_t xftello (FILE *, const_string filename);
+extern KPSEDLL void xfclose (FILE *fp, const_string filename);
+extern KPSEDLL void xfseek (FILE *fp, long offset, int wherefrom, const_string filename);
+extern KPSEDLL void xfseeko (FILE *fp, off_t offset, int wherefrom, const_string filename);
+extern KPSEDLL unsigned long xftell (FILE *fp, const_string filename);
+extern KPSEDLL off_t xftello (FILE *fp, const_string filename);
/* These call the corresponding function in the standard library, and
abort if those routines fail. Also, `xrealloc' calls `xmalloc' if