Delinted a bit
This commit is contained in:
parent
9a294d4821
commit
c59e581ef2
|
@ -69,6 +69,7 @@ main(argc, argv)
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
exit(!Compile(Nargv[1], Nargv[2]));
|
exit(!Compile(Nargv[1], Nargv[2]));
|
||||||
|
/*NOTREACHED*/
|
||||||
}
|
}
|
||||||
|
|
||||||
Compile(src, dst)
|
Compile(src, dst)
|
||||||
|
@ -195,7 +196,7 @@ static struct stdproc sysprocs[] = {
|
||||||
{ 0, 0 }
|
{ 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
extern t_def *Enter();
|
extern t_def *Enter(), *EnterType();
|
||||||
|
|
||||||
AddProcs(p)
|
AddProcs(p)
|
||||||
register struct stdproc *p;
|
register struct stdproc *p;
|
||||||
|
|
|
@ -140,7 +140,7 @@ DoOption(text)
|
||||||
|
|
||||||
if (++nDEF > mDEF) {
|
if (++nDEF > mDEF) {
|
||||||
DEFPATH = (char **)
|
DEFPATH = (char **)
|
||||||
Realloc(DEFPATH,(mDEF+=10)*sizeof(char *));
|
Realloc((char *)DEFPATH,(unsigned)(mDEF+=10)*sizeof(char *));
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = ndirs++; i < nDEF; i++) {
|
for (i = ndirs++; i < nDEF; i++) {
|
||||||
|
|
Loading…
Reference in a new issue