From: Ivan Maidanski Date: Wed, 7 Feb 2018 08:25:09 +0000 (+0300) Subject: Add GC prefix to _MSVC_DBG_H macro X-Git-Tag: v8.0.0~371 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e39bed2b8008f034dd5d587c06ffc404bef9465;p=platform%2Fupstream%2Flibgc.git Add GC prefix to _MSVC_DBG_H macro (code refactoring) * include/private/msvc_dbg.h (_MSVC_DBG_H): Rename to GC_MSVC_DBG_H. * include/private/msvc_dbg.h [__cplusplus]: Adjust indentation. --- diff --git a/include/private/msvc_dbg.h b/include/private/msvc_dbg.h index 1d3030a..10dd103 100644 --- a/include/private/msvc_dbg.h +++ b/include/private/msvc_dbg.h @@ -19,13 +19,14 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef _MSVC_DBG_H -#define _MSVC_DBG_H + +#ifndef GC_MSVC_DBG_H +#define GC_MSVC_DBG_H #include #ifdef __cplusplus -extern "C" { + extern "C" { #endif #if !MSVC_DBG_DLL @@ -63,7 +64,7 @@ MSVC_DBG_EXPORT int backtrace(void* addresses[], int count); MSVC_DBG_EXPORT char** backtrace_symbols(void*const addresses[], int count); #ifdef __cplusplus -} + } /* extern "C" */ #endif -#endif/*_MSVC_DBG_H*/ +#endif /* GC_MSVC_DBG_H */