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