mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-24 22:34:11 +08:00
10 lines
65 B
C
10 lines
65 B
C
#pragma weak bar
|
|
|
|
extern void bar ();
|
|
|
|
void
|
|
foo ()
|
|
{
|
|
bar ();
|
|
}
|