mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
11 lines
167 B
C
11 lines
167 B
C
|
char mod9_data;
|
||
|
|
||
|
void
|
||
|
mod9_function (void (*f) (void))
|
||
|
{
|
||
|
/* Make sure this is not a tail call and unwind information is
|
||
|
therefore needed. */
|
||
|
f ();
|
||
|
f ();
|
||
|
}
|