mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-12 08:15:06 +02:00
15 lines
169 B
C++
15 lines
169 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
struct Foo {
|
|
float x;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void root(Foo a);
|
|
|
|
} // extern "C"
|