13 lines
159 B
C
13 lines
159 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
struct FooU8 {
|
|
uint8_t a;
|
|
};
|
|
|
|
typedef struct FooU8 Boo;
|
|
|
|
void root(Boo x);
|