mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-05 10:39:41 +00:00
17 lines
220 B
C++
17 lines
220 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
struct HasBitfields {
|
|
uint64_t foo: 8;
|
|
uint64_t bar: 56;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void root(const HasBitfields*);
|
|
|
|
} // extern "C"
|