1/* Test function return values.   This test includes scalar types that
2   are not supported by va_arg.  */
3
4extern void scalar_return_2_x (void);
5extern void exit (int);
6int fails;
7
8int
9main ()
10{
11  scalar_return_2_x ();
12  exit (0);
13}
14