I'll be posting here until I either pay for another year of Radio Userland hosting or figure out how to upstream to somewhere else
Thursday, July 03, 2003
Pop quiz: What's wrong with the following line of C :
// returns 0 on success, -1 on failure
extern int dosomework();
int main()
{
ASSERT( dosomework() == 0 );
return 0;
}
I just fixed a bug against my code that was caused by this type of problem.
No comments:
Post a Comment