Corrected a bug about inclusion of cevap*.h files

This commit is contained in:
Thomas Schmitt 2007-08-20 08:43:44 +00:00
parent df9e6eac0b
commit 4d78a15cbd
1 changed files with 7 additions and 3 deletions

View File

@ -464,10 +464,14 @@ int flag;
/* already included ? */
if(strcmp(dtype,cgen->structname)==0)
continue;
for(hct= cgen->elements; hct!=NULL && hct!=ct; hct= hct->next)
if(strcmp(ct->dtype,dtype)==0)
for(hct= cgen->elements; hct!=NULL && hct!=ct; hct= hct->next) {
if(hct->is_comment)
continue;
if(hct->dtype!=NULL)
if(strcmp(hct->dtype,dtype)==0)
break;
if(hct!=ct)
}
if(hct!=ct && hct!=NULL)
continue;
if(is_struct && (isupper(dtype[0]) && isupper(dtype[strlen(dtype)-1]))) {