mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-12 08:15:06 +02:00
14 lines
188 B
C
14 lines
188 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#define FOO 10
|
|
|
|
#define ZOM 3.14
|
|
|
|
typedef struct Foo {
|
|
int32_t x[FOO];
|
|
} Foo;
|
|
|
|
void root(struct Foo x);
|