mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
14 lines
109 B
C
14 lines
109 B
C
|
#include <stdio.h>
|
||
|
|
||
|
static void
|
||
|
bar (void)
|
||
|
{
|
||
|
printf ("bar 3\n");
|
||
|
}
|
||
|
|
||
|
void *
|
||
|
bar3_p (void)
|
||
|
{
|
||
|
return bar;
|
||
|
}
|