blob: 6c995e7c4bb8fb3458effd2f83f3c65e21f8a97b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Test compatibility of vector types: layout between separately-compiled
modules, parameter passing, and function return. This test uses
vectors of integer values. */
extern void vector_1_x (void);
extern void exit (int);
int fails;
int
main ()
{
vector_1_x ();
exit (0);
}
|