blob: 3f221cb172f610ac7ec1e4f19b9592f5b203eab2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Verify that global function is called. */
#include "tst-secondary.h"
extern int bar (void);
extern void foo (void);
int
main (void)
{
foo ();
return bar () != GLOBAL;
}
|