This question might be totally strange, I am currently working on some old code (not from me). I am actually no C programmer, but I am trying to understand what this part of the code is actually supposed to do. Luckily the strange part isn't to long (part of a configuration):
int
main ()
{
#ifndef __GNUC__
choke me
#endif
;
return 0;
}
If it is not a GNU compiler then "choke me"
...what is this choke me
supposed to mean...I really don't get it. (and found only strange things while googling choke me -.-)