blob: 8164b44283a0f8fee51c3898e49a7f538b37921b [file] [log] [blame]
/* Test passing scalars by value. This test includes _Complex types
whose real and imaginary parts cannot be used in variable-length
argument lists. */
extern void scalar_by_value_4_x (void);
extern void exit (int);
int fails;
int
main ()
{
scalar_by_value_4_x ();
exit (0);
}