9 lines
83 B
C
9 lines
83 B
C
extern void foo (long *);
|
|
long bar;
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
foo (&bar);
|
|
return 0;
|
|
}
|