Fix WEAK redefinition in mbed

PUBLISHED_FROM=6abc158f198f5bd032e5ab06cc0ba3373434cdbe
This commit is contained in:
Alexander Alashkin 2016-12-08 16:07:23 +00:00 committed by Cesanta Bot
parent 9937e88985
commit 6e88c9cfd1

View File

@ -116,11 +116,13 @@
/* Common stuff */
#if !defined(WEAK)
#if (defined(__GNUC__) || defined(__TI_COMPILER_VERSION__)) && !defined(_WIN32)
#define WEAK __attribute__((weak))
#else
#define WEAK
#endif
#endif
#ifdef __GNUC__
#define NORETURN __attribute__((noreturn))