adapted to print(3L) module

This commit is contained in:
erikb
1986-04-03 14:32:56 +00:00
parent 22f6299fdb
commit 2118a5eea0
11 changed files with 87 additions and 109 deletions

View File

@@ -20,15 +20,14 @@ DfaStartFunction(nm)
DfaEndFunction()
{
if (NumberOfCalls == 0) {
printf("DFA: %s: --none--\n", CurrentFunction);
}
if (NumberOfCalls == 0)
print("DFA: %s: --none--\n", CurrentFunction);
}
DfaCallFunction(s)
char *s;
{
printf("DFA: %s: %s\n", CurrentFunction, s);
print("DFA: %s: %s\n", CurrentFunction, s);
++NumberOfCalls;
}
#endif DATAFLOW