66a5d3b1c1
2004-09-07 Frank Ch. Eigler <fche@redhat.com> * configure.ac: Look for pwd.h, grp.h, netdb.h headers and functions. * mf-hooks2.c (strerror): Unregister previous string returned by previous strerror. (getlogin,cuserid,getpwnam,getpwuid,getgrnam,getgrgid): New wrappers. (getservent,getservbyname,getservbyport,gai_strerror): Ditto. * mf-runtime.h.in: Add redefine_extname pragmas for them all. * mf-runtime.c (__mf_describe_object): Clarify object life status. * testsuite/libmudflap.c/pass48-frag.c, pass49-frag.c, fail32-frag.c: New tests. * configure, config.h.in: Regenerated. From-SVN: r87160
36 lines
555 B
C
36 lines
555 B
C
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
#include <stdarg.h>
|
|
|
|
int foo (int a, ...)
|
|
{
|
|
va_list args;
|
|
char *a1;
|
|
int a2;
|
|
int k;
|
|
|
|
va_start (args, a);
|
|
for (k = 0; k < a; k++)
|
|
{
|
|
if ((k % 2) == 0)
|
|
{
|
|
char *b = va_arg (args, char *);
|
|
printf ("%s", b);
|
|
}
|
|
else
|
|
{
|
|
int b = va_arg (args, int);
|
|
printf ("%d", b);
|
|
}
|
|
}
|
|
va_end (args);
|
|
return a;
|
|
}
|
|
|
|
int main ()
|
|
{
|
|
foo (7, "hello ", 5, " ", 3, " world ", 9, "\n");
|
|
return 0;
|
|
}
|
|
/* { dg-output "hello 5 3 world 9" } */
|