--- src/bin/ibuild/ibdialog.c.org Tue Feb 2 08:04:15 1993 +++ src/bin/ibuild/ibdialog.c Sun Jan 23 20:14:43 2000 @@ -35,6 +35,7 @@ #include #include #include +#include #include #include @@ -382,7 +383,7 @@ strcat(ButtonClass, "_Button"); const char* proc = bsVar->GetFuncName(); - boolean export = bsVar->GetExport(); + boolean exportval = bsVar->GetExport(); CodeView* kidview = GetKidView(); MemberNameVar* kidname; if (kidview != nil) { @@ -409,7 +410,7 @@ out << "Interactor*" << coreclass; out << "::Interior() {\n"; - if (export) { + if (exportval) { out << " " << bsVar->GetName() << " = state;\n"; } else { out << " ButtonState* ";