/* $OpeBSD$ */ /* Copyright (c) 2003 Michael Shalayeff. Public Domain. */ #include int main() { char *q, *p; p = alloca(41); strcpy(p, "hellow world"); q = alloca(53); strcpy(q, "hellow world"); exit(strcmp(p, q)); }