OSDN Git Service

2004-05-20 H.J. Lu <hongjiu.lu@intel.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / compat / struct-return-2_main.c
1 /* Test function return values.  This test includes structs that are
2    arrays of unsigned integral scalars.  */
3
4 extern void struct_return_2_x (void);
5 extern void exit (int);
6 int fails;
7
8 int
9 main ()
10 {
11   struct_return_2_x ();
12   exit (0);
13 }