aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/compat/scalar-return-2_main.c
blob: 11a5e5044fc754fb600b18ac2d099cce44f45875 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Test function return values.   This test includes scalar types that
   are not supported by va_arg.  */

extern void scalar_return_2_x (void);
extern void exit (int);
int fails;

int
main ()
{
  scalar_return_2_x ();
  exit (0);
}