From: Piotr Stankiewicz Date: Thu, 6 Dec 2018 10:04:27 +0000 (+0000) Subject: tinycompress: Fix missing '}' around extern C X-Git-Tag: v1.1.8~2 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=274e8a9e3568692c9f976e76121c62ce412d17af;p=tinycompress.git tinycompress: Fix missing '}' around extern C Signed-off-by: Piotr Stankiewicz Signed-off-by: Charles Keepax Signed-off-by: Vinod Koul --- diff --git a/include/tinycompress/tinycompress.h b/include/tinycompress/tinycompress.h index 780dce6..f0fae30 100644 --- a/include/tinycompress/tinycompress.h +++ b/include/tinycompress/tinycompress.h @@ -276,4 +276,8 @@ int is_compress_ready(struct compress *compress); /* Returns a human readable reason for the last error */ const char *compress_get_error(struct compress *compress); +#if defined(__cplusplus) +} // extern "C" +#endif + #endif