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