Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / arg5.C
blob665c5cd4f35d881af8f005815ba59a1799a2f988
1 // { dg-do assemble  }
2 // GROUPS passed arg-matching
3 extern double pow(double,int*);
5 extern "C" {
6   extern int printf (const char *, ...);
7   extern double pow(double, double);
10 int main()
12         if (pow (2.0, 3.0) != 8.0)
13           { printf ("FAIL\n"); return 1; }
14         else
15           printf ("PASS\n");