diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-03-17 11:02:17 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-03-17 11:02:17 +0000 |
commit | cc9e2cf485fdc6d0689f5943154c593d9f3696e6 (patch) | |
tree | cf6d7f26a372ab41a291c58597e0da38204c79b2 /Build/source/texk/kpathsea/getopt.h | |
parent | f02c90b67527cfb210815f40184019554d107cbd (diff) |
make kpathsea C++ safe, adapt xdv2pdf to new kpathsea API
git-svn-id: svn://tug.org/texlive/trunk@12405 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/getopt.h')
-rw-r--r-- | Build/source/texk/kpathsea/getopt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Build/source/texk/kpathsea/getopt.h b/Build/source/texk/kpathsea/getopt.h index 49efaff3b8a..c0098f19ba6 100644 --- a/Build/source/texk/kpathsea/getopt.h +++ b/Build/source/texk/kpathsea/getopt.h @@ -123,7 +123,9 @@ struct option errors, only prototype getopt for the GNU C library. */ extern KPSEDLL int getopt (int argc, char *const *argv, const char *shortopts); #else /* not __GNU_LIBRARY__ */ +#ifndef __cplusplus extern KPSEDLL int getopt (); +#endif /* not __cplusplus */ #endif /* __GNU_LIBRARY__ */ extern KPSEDLL int getopt_long (int argc, char *const *argv, const char *shortopts, const struct option *longopts, int *longind); |