Non-Confidential | ![]() | ARM DUI0375E | ||
| ||||
Home > Compiler-specific Features > __attribute__((weak)) function attribute |
Functions defined with __attribute__((weak))
export their symbols weakly.
__attribute__((weak))
and then defined without
__attribute__((weak))
behave as weak
functions. This is not the same behavior as the __weak
keyword.extern int Function_Attributes_weak_0 (int b) __attribute__((weak));