This test has been automatized
[oota-llvm.git] / test / CFrontend / 2002-05-24-Alloca.c
1 #include <string.h>
2 #include <stdio.h>
3 #include <stdlib.h>
4
5 int main(int argc, char **argv) {
6         char *C = (char*)alloca(argc);
7         strcpy(C, argv[0]);
8         puts(C);
9 }