File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ void ansi_c_internal_additions(std::string &code);
1616void ansi_c_architecture_strings (std::string &code);
1717
1818extern const char clang_builtin_headers[];
19+ extern const char gcc_builtin_headers_types[];
1920extern const char gcc_builtin_headers_generic[];
2021extern const char gcc_builtin_headers_math[];
2122extern const char gcc_builtin_headers_mem_string[];
Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ void cpp_internal_additions(std::ostream &out)
112112 config.ansi_c .mode ==configt::ansi_ct::flavourt::ARM)
113113 {
114114 out << " extern \" C\" {" << ' \n ' ;
115+ out << c2cpp (gcc_builtin_headers_types);
115116 out << c2cpp (gcc_builtin_headers_generic);
116117 out << c2cpp (gcc_builtin_headers_math);
117118 out << c2cpp (gcc_builtin_headers_mem_string);
You can’t perform that action at this time.
0 commit comments