2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / special / alias-2.c
blob4cc8ce150f11fa32d93b61470ebf7696c113d14a
1 /* PR 3997 */
2 /* { dg-do run } */
3 /* { dg-require-alias "" } */
5 extern void abort (void);
6 extern void exit (int);
8 void foo(void)
10 exit(0);
13 static void bar(void) __attribute__((alias("foo")));
15 int main()
17 bar();
18 abort ();