summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/hash.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-08-02 15:41:52 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-08-02 15:41:52 +0000
commit49f47e772fcf8d5b6148eba21ffb438fa35c8c00 (patch)
treec13a5f8aaad9d4c8328e898a08a1160a72da74e0 /Build/source/texk/kpathsea/hash.h
parent6c2467cbb8e21577155060c598661d71024c1893 (diff)
kpathsea: unexport library internal functions, remove unused ones
git-svn-id: svn://tug.org/texlive/trunk@23317 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/hash.h')
-rw-r--r--Build/source/texk/kpathsea/hash.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/hash.h b/Build/source/texk/kpathsea/hash.h
index 2945df6c01c..336b196a985 100644
--- a/Build/source/texk/kpathsea/hash.h
+++ b/Build/source/texk/kpathsea/hash.h
@@ -48,13 +48,17 @@ extern KPSEDLL void hash_insert (hash_table_type *table,
const_string key,
const_string value);
+#ifdef MAKE_KPSE_DLL /* libkpathsea internal only */
+
/* Insert the (KEY, VALUE) association into TABLE. KEY may have more
than one VALUE. Neither KEY nor VALUE is copied. Assume that KEY
is already normalized (all lowercase) on platforms where this matters. */
-extern KPSEDLL void hash_insert_normalized (hash_table_type *table,
+extern void hash_insert_normalized (hash_table_type *table,
const_string key,
const_string value);
+#endif /* MAKE_KPSE_DLL */
+
/* Remove the (KEY,VALUE) association from TABLE. */
extern KPSEDLL void hash_remove (hash_table_type *table, const_string key,
const_string value);