mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-10 13:11:12 +00:00
19 lines
214 B
C++
19 lines
214 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"
|