mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #15222 from OpenNuvoton/nuvoton_iar_strrchr
Fix strrchr() not declared for IARpull/15223/head
commit
f5156087ba
|
@ -33,6 +33,11 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
/* Fix strrchr() not declared for IAR, used in MBED_FILENAME */
|
||||
#if defined(__ICCARM__)
|
||||
#include <string.h>
|
||||
#endif
|
||||
|
||||
// Warning for unsupported compilers
|
||||
#if !defined(__GNUC__) /* GCC */ \
|
||||
&& !defined(__clang__) /* LLVM/Clang */ \
|
||||
|
|
Loading…
Reference in New Issue