diff options
author | Martin Schröder <martin@oneiros.de> | 2008-02-21 20:58:24 +0000 |
---|---|---|
committer | Martin Schröder <martin@oneiros.de> | 2008-02-21 20:58:24 +0000 |
commit | e834a90f686d8b4f5926c5dbcf86fa3786f29b44 (patch) | |
tree | 336e5160fdf4a8079390488f5c649bb33f569d0d /Build/source/texk/kpathsea/lib.h | |
parent | 5d9446ef25b0060343df04af7f80e3933ad69d8d (diff) |
Add LFS (long -> off_t, fseek -> fseeko)
git-svn-id: svn://tug.org/texlive/trunk@6707 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/lib.h')
-rw-r--r-- | Build/source/texk/kpathsea/lib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/lib.h b/Build/source/texk/kpathsea/lib.h index af72ed3e5de..4158b69c5c4 100644 --- a/Build/source/texk/kpathsea/lib.h +++ b/Build/source/texk/kpathsea/lib.h @@ -163,8 +163,8 @@ extern KPSEDLL int dir_links P2H(const_string fn, long nlinks); perror(3) with FILENAME as its argument. */ extern KPSEDLL FILE *xfopen P2H(const_string filename, const_string mode); extern KPSEDLL void xfclose P2H(FILE *, const_string filename); -extern KPSEDLL void xfseek P4H(FILE *, long, int, string filename); -extern KPSEDLL unsigned long xftell P2H(FILE *, string filename); +extern KPSEDLL void xfseek P4H(FILE *, off_t, int, string filename); +extern KPSEDLL off_t xftell P2H(FILE *, string filename); /* These call the corresponding function in the standard library, and abort if those routines fail. Also, `xrealloc' calls `xmalloc' if |