diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-12-13 11:20:26 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-12-13 11:20:26 +0000 |
commit | 98b38818d5618fce1e1cf6e95a924e206249eb42 (patch) | |
tree | fe9f1689584277105855987d376ca8692490bfdb /Build/source/texk/kpathsea/readable.h | |
parent | 98b3e920b0a94a24517b8ccede04d1a9a3cc9c3f (diff) |
kpathsea: Resolve remaining const related problems
web2c, ptexenc: Adapt
git-svn-id: svn://tug.org/texlive/trunk@28521 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/readable.h')
-rw-r--r-- | Build/source/texk/kpathsea/readable.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Build/source/texk/kpathsea/readable.h b/Build/source/texk/kpathsea/readable.h index 43e1e385f75..ca766c0141d 100644 --- a/Build/source/texk/kpathsea/readable.h +++ b/Build/source/texk/kpathsea/readable.h @@ -26,11 +26,10 @@ ENAMETOOLONG, truncate any too-long path components, and if the result is a readable file, return that. Otherwise return NULL. */ -extern KPSEDLL string kpathsea_readable_file (kpathsea kpse, - const_string name); +extern KPSEDLL string kpathsea_readable_file (kpathsea kpse, string name); #if defined (KPSE_COMPAT_API) -extern KPSEDLL string kpse_readable_file (const_string name); +extern KPSEDLL string kpse_readable_file (string name); #endif #endif /* not KPATHSEA_READABLE_H */ |