mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-05 10:39:41 +00:00
26 lines
326 B
C++
26 lines
326 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
namespace constants {
|
|
namespace test {
|
|
|
|
static const int32_t FOO = 10;
|
|
|
|
static const float ZOM = 3.14;
|
|
|
|
struct Foo {
|
|
int32_t x[FOO];
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void root(Foo x);
|
|
|
|
} // extern "C"
|
|
|
|
} // namespace test
|
|
} // namespace constants
|