Minor fix

This commit is contained in:
ceriel 1994-04-19 10:04:53 +00:00
parent 656fb00e9b
commit dd67502468

View file

@ -262,6 +262,10 @@ actual_declaration(sc, tp)
if (fund == FUNCTION || fund == ARRAY) if (fund == FUNCTION || fund == ARRAY)
/* allocation solved in other ways */ /* allocation solved in other ways */
return 0; return 0;
if (sc == EXTERN && fund == VOID) {
/* strange, but should be accepted */
return 0;
}
/* to be allocated */ /* to be allocated */
return 1; return 1;
} }