blob: bd024c0542df6f2f029482dea5f5116487202782 [file] [log] [blame]
/* Test passing scalars by value. This test includes _Complex types
whose real and imaginary parts can 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);
}