2018-11-27 00:13:34 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdbool.h>
|
2018-10-31 17:19:37 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
typedef struct PREFIXFoo {
|
|
|
|
int32_t a;
|
|
|
|
uint32_t b;
|
|
|
|
} PREFIXFoo;
|
2019-02-23 17:24:09 -08:00
|
|
|
#define PREFIXFoo_FOO (PREFIXFoo){ .a = 42, .b = 47 }
|
2018-10-31 17:19:37 +01:00
|
|
|
|
|
|
|
#define PREFIXBAR (PREFIXFoo){ .a = 42, .b = 1337 }
|
|
|
|
|
|
|
|
void root(PREFIXFoo x);
|