1 /* Test structures passed by value, including to a function with a
2    variable-length argument lists.  All struct members are float
3    scalars.  */
4 
5 extern void struct_by_value_5a_x (void);
6 extern void exit (int);
7 int fails;
8 
9 int
main()10 main ()
11 {
12   struct_by_value_5a_x ();
13   exit (0);
14 }
15