blob: 4fb7c69b2465035261fbe0b74712e0e4dedd5a37 [file] [log] [blame]
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
struct PREFIXBar {
int32_t a;
};
struct PREFIXFoo {
int32_t a;
uint32_t b;
struct PREFIXBar bar;
};
#define PREFIXVAL (PREFIXFoo){ .a = 42, .b = 1337, .bar = (PREFIXBar){ .a = 323 } }
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
void root(struct PREFIXFoo x);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus