diff options
Diffstat (limited to 'Build/source/texk/web2c/w2c')
-rw-r--r-- | Build/source/texk/web2c/w2c/config.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/w2c/config.h b/Build/source/texk/web2c/w2c/config.h index 0a44572b28d..3888b3f5843 100644 --- a/Build/source/texk/web2c/w2c/config.h +++ b/Build/source/texk/web2c/w2c/config.h @@ -26,6 +26,10 @@ along with this program; if not, see <http://www.gnu.org/licenses/. */ /* How to open a binary file. */ #include <kpathsea/c-fopen.h> +#ifdef __cplusplus +extern "C" { +#endif + /* The smallest signed type: use `signed char' if ANSI C, `short' if char is unsigned, otherwise `char'. */ #ifndef SCHAR_TYPE @@ -126,4 +130,8 @@ extern void uexit (int status); extern void usage (const_string progname); extern void usagehelp (const_string *message, const_string bug_email); +#ifdef __cplusplus +} +#endif + #endif /* not WEB2C_CONFIG_H */ |