summaryrefslogtreecommitdiff
path: root/test/CFrontend/2002-05-24-Alloca.c
blob: 698452e574a1ec5d4743d692b69ab11e9684dd42 (plain)
1
2
3
4
5
6
7
8
9
#include <string.h>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char **argv) {
	char *C = (char*)alloca(argc);
	strcpy(C, argv[0]);
	puts(C);
}