blob: 22a1f6ef7c89c36884fa98a58e9bdc18e9fb1f88 [file] [log] [blame]
/* Test function return values. This test includes structs that are
arrays of unsigned integral scalars. */
extern void struct_return_2_x (void);
extern void exit (int);
int fails;
int
main ()
{
struct_return_2_x ();
exit (0);
}