9b5dd80d84
This is technically a breaking change for C++, unfortunately. Fixes #423.
15 lines
153 B
C++
15 lines
153 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <new>
|
|
|
|
struct Foo {
|
|
uint32_t a;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void root(Foo a);
|
|
|
|
} // extern "C"
|