diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-02-11 10:10:34 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-02-11 10:10:34 +0000 |
commit | 0a379f3570e256634fa48b143b6a46bf508eb150 (patch) | |
tree | 1343ba8a25c16b71c62353b24a01bf3070d99c56 /Build/source/texk/kpathsea/hash.h | |
parent | ce51c79c2c2f0d62a7f86a7d0e760d9c711e5dbf (diff) |
unexport libkpathsea internal function prototypes
git-svn-id: svn://tug.org/texlive/trunk@16967 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/hash.h')
-rw-r--r-- | Build/source/texk/kpathsea/hash.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/hash.h b/Build/source/texk/kpathsea/hash.h index a88233fed6f..f9702b3a794 100644 --- a/Build/source/texk/kpathsea/hash.h +++ b/Build/source/texk/kpathsea/hash.h @@ -1,6 +1,6 @@ /* hash.h: declarations for a hash table. - Copyright 1994, 1995, 2008 Karl Berry. + Copyright 1994, 1995, 2008, 2010 Karl Berry. Copyright 1999, 2005 Olaf Weber. This library is free software; you can redistribute it and/or @@ -63,10 +63,14 @@ extern KPSEDLL void hash_remove (hash_table_type *table, const_string key, values (not copies), in insertion order. If none, return NULL. */ extern KPSEDLL string *hash_lookup (hash_table_type table, const_string key); +#ifdef MAKE_KPSE_DLL /* libkpathsea internal only */ + /* Print TABLE to stderr. */ extern void hash_print (hash_table_type table, boolean summary_only); /* Drop the TABLE */ extern void hash_free (hash_table_type table); +#endif /* MAKE_KPSE_DLL */ + #endif /* not HASH_H */ |