From: Sunggyu Choi Date: Fri, 27 Feb 2015 09:26:31 +0000 (+0900) Subject: Added extern C tag for newly added error handling API X-Git-Tag: submit/tizen/20150305.103437^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7ac2df05fae63bc37af28cca121b264373463e2d;p=platform%2Fcore%2Fapi%2Fcommon.git Added extern C tag for newly added error handling API Change-Id: Ia58119fd55bb71d6606e23d6f444b0848d48d1b6 Signed-off-by: Sunggyu Choi --- diff --git a/include/tizen_error.h b/include/tizen_error.h index 8eabf38..dd98dd9 100755 --- a/include/tizen_error.h +++ b/include/tizen_error.h @@ -20,6 +20,10 @@ #include +#ifdef __cplusplus +extern "C" { +#endif + /** * @addtogroup CAPI_COMMON_ERROR * @{ @@ -364,5 +368,9 @@ char* get_error_message(int err); /** * @} */ +#ifdef __cplusplus +} +#endif + #endif /**<__TIZEN_COMMON_ERROR_H__ */