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