blob: 0a27f5416b1d84157e7077fc83374bd49eba28dd [file] [log] [blame]
/* Test function return values. This test includes scalar types that
are supported by va_arg. */
extern void scalar_return_1_x (void);
extern void exit (int);
int fails;
int
main ()
{
scalar_return_1_x ();
exit (0);
}