mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-13 00:35:09 +02:00
11 lines
207 B
C
11 lines
207 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct HasBitfields {
|
|
uint64_t foo: 8;
|
|
uint64_t bar: 56;
|
|
} HasBitfields;
|
|
|
|
void root(const struct HasBitfields*);
|