1 #include <stdarg.h>
2 #include <stdbool.h>
3 #include <stdint.h>
4 #include <stdlib.h>
5 
6 typedef struct Foo {
7   float x;
8 } Foo;
9 
10 void root(Foo a);
11