aboutsummaryrefslogtreecommitdiff
path: root/backendC/CleanCompilerSources/syntaxtr.t
diff options
context:
space:
mode:
Diffstat (limited to 'backendC/CleanCompilerSources/syntaxtr.t')
-rw-r--r--backendC/CleanCompilerSources/syntaxtr.t6
1 files changed, 6 insertions, 0 deletions
diff --git a/backendC/CleanCompilerSources/syntaxtr.t b/backendC/CleanCompilerSources/syntaxtr.t
index 233ac3c..0583ea8 100644
--- a/backendC/CleanCompilerSources/syntaxtr.t
+++ b/backendC/CleanCompilerSources/syntaxtr.t
@@ -815,6 +815,11 @@ struct string_list {
};
#endif
+struct foreign_export_list {
+ SymbolP fe_symbol_p;
+ struct foreign_export_list *fe_next;
+};
+
#if CLEAN2
typedef char * ModuleFileTime;
#else
@@ -838,6 +843,7 @@ typedef struct {
struct string_list * im_imported_objs;
struct string_list * im_imported_libs;
#endif
+ struct foreign_export_list * im_foreign_exports;
#if WRITE_DCL_MODIFICATION_TIME
ModuleFileTime im_modification_time;
#endif