summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/getopt.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2010-02-11 10:10:34 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2010-02-11 10:10:34 +0000
commit0a379f3570e256634fa48b143b6a46bf508eb150 (patch)
tree1343ba8a25c16b71c62353b24a01bf3070d99c56 /Build/source/texk/kpathsea/getopt.h
parentce51c79c2c2f0d62a7f86a7d0e760d9c711e5dbf (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/getopt.h')
-rw-r--r--Build/source/texk/kpathsea/getopt.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Build/source/texk/kpathsea/getopt.h b/Build/source/texk/kpathsea/getopt.h
index 932cf5d941a..d3e9aa06fd3 100644
--- a/Build/source/texk/kpathsea/getopt.h
+++ b/Build/source/texk/kpathsea/getopt.h
@@ -123,17 +123,25 @@ extern KPSEDLL int getopt_long_only (int argc, char *const *argv,
const char *shortopts,
const struct option *longopts, int *longind);
+#ifdef MAKE_KPSE_DLL /* libkpathsea internal only */
+
/* Internal only. Users should not call this directly. */
extern int _getopt_internal (int argc, char *const *argv,
const char *shortopts,
const struct option *longopts, int *longind,
int long_only);
+
+#endif /* MAKE_KPSE_DLL */
#else /* not __STDC__ */
extern KPSEDLL int getopt ();
extern KPSEDLL int getopt_long ();
extern KPSEDLL int getopt_long_only ();
+#ifdef MAKE_KPSE_DLL /* libkpathsea internal only */
+
extern int _getopt_internal ();
+
+#endif /* MAKE_KPSE_DLL */
#endif /* __STDC__ */
#ifdef __cplusplus