This commit is contained in:
ceriel
1988-10-07 10:26:37 +00:00
parent c488a4d491
commit 79295ca3ea
4 changed files with 11 additions and 7 deletions

View File

@@ -55,6 +55,7 @@ DoOption(str)
}
}
/*ARGSUSED*/
CheckId(id, len)
char *id;
{
@@ -100,7 +101,7 @@ GetMacros(fn)
if ((fp = fopen(fn, "r")) == NULL) {
fprintf(stderr, "%s: cannot read file \"%s\"\n", ProgName, fn);
return 0;
return;
}
while ((c = getc(fp)) != EOF) {
@@ -163,7 +164,7 @@ Salloc(str)
if (str == 0) {
str = "";
}
return strcpy(Malloc(strlen(str) + 1), str);
return strcpy(Malloc((unsigned)strlen(str) + 1), str);
}
struct idf *