blob: a150fa14d00aafc170d6f5f700ee040e43dc2afd [file] [log] [blame]
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
struct Foo_Bar {
const int32_t *something;
};
union Bar {
int32_t something;
struct Foo_Bar subexpressions;
};
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
void root(union Bar b);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus