/* I believe this was coded by Travis Tilley for Gentoo */ #include void strcpy_bad(void); int main(void) { strcpy_bad(); return 0; } void strcpy_bad(void) { char tmp[8]; strcpy(tmp, (char*)getenv("PATH")); puts(tmp); }