Minor fix
This commit is contained in:
parent
656fb00e9b
commit
dd67502468
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue