diff options
Diffstat (limited to 'Build/source/texk/kpathsea/xfseeko.c')
-rw-r--r-- | Build/source/texk/kpathsea/xfseeko.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/xfseeko.c b/Build/source/texk/kpathsea/xfseeko.c index ecc3d60240a..16e9c0fd4ba 100644 --- a/Build/source/texk/kpathsea/xfseeko.c +++ b/Build/source/texk/kpathsea/xfseeko.c @@ -18,9 +18,9 @@ #include <kpathsea/config.h> void -xfseeko P4C(FILE *, f, off_t, offset, int, wherefrom, string, filename) +xfseeko (FILE *f, off_t offset, int wherefrom, string filename) { if (fseeko (f, offset, wherefrom) < 0) { - FATAL_PERROR (filename); + FATAL_PERROR(filename); } } |