mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
9 lines
302 B
C
9 lines
302 B
C
void bar (void) {}
|
|
#if defined __powerpc64__ && defined _CALL_AIXDESC && !defined _CALL_LINUX
|
|
static const char __warn_bar[]
|
|
__attribute__ ((used, section (".gnu.warning..bar"))) = "Bad bar";
|
|
#else
|
|
static const char __warn_bar[]
|
|
__attribute__ ((used, section (".gnu.warning.bar"))) = "Bad bar";
|
|
#endif
|