mbed library sources that still uses the stm standard peripheral library
Fork of mbed-src by
Revision 416:271884f87da0, committed 2014-11-25
- Comitter:
- mbed_official
- Date:
- Tue Nov 25 07:30:07 2014 +0000
- Parent:
- 415:4ec4c5b614b0
- Child:
- 417:fc5dba704912
- Commit message:
- Synchronized with git revision d5afb477600de97e21dd423533b3cb16375486e7
Full URL: https://github.com/mbedmicro/mbed/commit/d5afb477600de97e21dd423533b3cb16375486e7/
mbed: Name of exit function in exit.c for GCC ARM (_exit)
Changed in this revision
common/exit.c | Show annotated file Show diff for this revision Revisions of this file |
--- a/common/exit.c Tue Nov 25 07:15:09 2014 +0000 +++ b/common/exit.c Tue Nov 25 07:30:07 2014 +0000 @@ -22,6 +22,8 @@ #ifdef TOOLCHAIN_GCC_CW // TODO: Ideally, we would like to define directly "_ExitProcess" void mbed_exit(int return_code) { +#elif defined TOOLCHAIN_GCC_ARM +void _exit(int return_code) { #else void exit(int return_code) { #endif