1 /* Check that sdata qualification doesn't produce out-of-range relocations
2    and that compilers agree on the way these declarations are handled.  */
3 
4 extern void sdata_1_x (void);
5 extern void exit (int);
6 
7 int
main()8 main ()
9 {
10   sdata_1_x ();
11   exit (0);
12 }
13