Live like you were going to die tomorrow; learn like you will live forever. — Gandhi
In: ALL
28 Jul 2009tsurko@bastila:~/work$ cat porno.c
#include”
int porn_a()
{
printf(”in porn_a()\n”);
goto PORNO;
return 2;
}
char* porn_b(char* str)
{
printf(”in porn_b()\n”);
PORNO:
return str;
}
int main()
{
[...]