mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-26 02:33:31 +08:00
10 lines
87 B
C
10 lines
87 B
C
|
extern void foo (long *);
|
||
|
long bar = 1;
|
||
|
|
||
|
int
|
||
|
main (void)
|
||
|
{
|
||
|
foo (&bar);
|
||
|
return 0;
|
||
|
}
|