blob: 7505f464fec9e0593e1ba65dff12e47d6a18e8a2 [file] [log] [blame] [edit]
#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*);