From e6bf6640840cef2664c3c2812119108efa4ede62 Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Fri, 8 Feb 2013 11:03:41 -0800 Subject: [PATCH] jpeglib.h: use C linkage --- jpeglib.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/jpeglib.h b/jpeglib.h index d1be8dd..7e19d84 100644 --- a/jpeglib.h +++ b/jpeglib.h @@ -13,6 +13,10 @@ #ifndef JPEGLIB_H #define JPEGLIB_H +#ifdef __cplusplus +extern "C" { +#endif + /* * First we include the configuration files that record how this * installation of the JPEG library is set up. jconfig.h can be @@ -1093,4 +1097,8 @@ struct jpeg_color_quantizer { long dummy; }; #include "jerror.h" /* fetch error codes too */ #endif +#ifdef __cplusplus +} +#endif + #endif /* JPEGLIB_H */ -- 2.7.4