#define BANNED(func) sorry_##func##_is_a_banned_function

#undef strcpy
#define strcpy(x,y) BANNED(strcpy)

int main() {
	strcpy(NULL, NULL);
	
	return 0;
}