3b5d599733
Remove many old-style function header variants in C source files of the GDB test suite, using the 'unifdef' tool with '-DPROTOTYPES=1'. gdb/testsuite/ChangeLog: * gdb.base/annota1.c: Remove #ifdef PROTOTYPES, keep prototyped variant. * gdb.base/annota3.c: Likewise. * gdb.base/async.c: Likewise. * gdb.base/average.c: Likewise. * gdb.base/call-ar-st.c: Likewise. * gdb.base/call-rt-st.c: Likewise. * gdb.base/call-sc.c: Likewise. * gdb.base/call-strs.c: Likewise. * gdb.base/ending-run.c: Likewise. * gdb.base/execd-prog.c: Likewise. * gdb.base/exprs.c: Likewise. * gdb.base/foll-exec.c: Likewise. * gdb.base/foll-fork.c: Likewise. * gdb.base/foll-vfork.c: Likewise. * gdb.base/funcargs.c: Likewise. * gdb.base/gcore.c: Likewise. * gdb.base/jump.c: Likewise. * gdb.base/langs0.c: Likewise. * gdb.base/langs1.c: Likewise. * gdb.base/langs2.c: Likewise. * gdb.base/mips_pro.c: Likewise. * gdb.base/nodebug.c: Likewise. * gdb.base/opaque0.c: Likewise. * gdb.base/opaque1.c: Likewise. * gdb.base/recurse.c: Likewise. * gdb.base/run.c: Likewise. * gdb.base/scope0.c: Likewise. * gdb.base/scope1.c: Likewise. * gdb.base/setshow.c: Likewise. * gdb.base/setvar.c: Likewise. * gdb.base/shmain.c: Likewise. * gdb.base/shr1.c: Likewise. * gdb.base/shr2.c: Likewise. * gdb.base/sigall.c: Likewise. * gdb.base/signals.c: Likewise. * gdb.base/so-indr-cl.c: Likewise. * gdb.base/solib2.c: Likewise. * gdb.base/structs.c: Likewise. * gdb.base/sum.c: Likewise. * gdb.base/vforked-prog.c: Likewise. * gdb.base/watchpoint.c: Likewise. * gdb.reverse/shr2.c: Likewise. * gdb.reverse/until-reverse.c: Likewise. * gdb.reverse/ur1.c: Likewise. * gdb.reverse/watch-reverse.c: Likewise.
56 lines
1,013 B
C
56 lines
1,013 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
char buf[100];
|
|
char bigbuf[1000];
|
|
char * s;
|
|
|
|
char * str_func1(char *s1)
|
|
{
|
|
printf("first string arg is: %s\n", s1);
|
|
strcpy(bigbuf, s1);
|
|
return bigbuf;
|
|
}
|
|
|
|
char * str_func(
|
|
char * s1,
|
|
char * s2,
|
|
char * s3,
|
|
char * s4,
|
|
char * s5,
|
|
char * s6,
|
|
char * s7)
|
|
{
|
|
printf("first string arg is: %s\n", s1);
|
|
printf("second string arg is: %s\n", s2);
|
|
printf("third string arg is: %s\n", s3);
|
|
printf("fourth string arg is: %s\n", s4);
|
|
printf("fifth string arg is: %s\n", s5);
|
|
printf("sixth string arg is: %s\n", s6);
|
|
printf("seventh string arg is: %s\n", s7);
|
|
strcpy(bigbuf, s1);
|
|
strcat(bigbuf, s2);
|
|
strcat(bigbuf, s3);
|
|
strcat(bigbuf, s4);
|
|
strcat(bigbuf, s5);
|
|
strcat(bigbuf, s6);
|
|
strcat(bigbuf, s7);
|
|
return bigbuf;
|
|
}
|
|
|
|
char *
|
|
link_malloc ()
|
|
{
|
|
return (char*) malloc (1);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
s = &buf[0];
|
|
strcpy(buf, "test string");
|
|
str_func("abcd", "efgh", "ijkl", "mnop", "qrst", "uvwx", "yz12");
|
|
str_func1("abcd");
|
|
return 0;
|
|
}
|
|
|