|
发表于 2003-11-18 17:11:09
|
显示全部楼层
char *argv{} --> char *argv[]
"err_quit" is a function writen by author himself.
you must write it by yourself,like this:
void err_quit(const char * s)
{
fprintf(stderr,"%s\n",s);
exit(1);
}
the same with "err_sys" (i think)
it use "exit",then you should "#inlude <stdlib.h>" |
|