1 2 3 4 5 6 7 8 9 10
#include <stdio.h> #include <stdint.h> typedef union TestUnion { uint64_t bits; } TestUnion; uint64_t give_back(TestUnion tu) { return tu.bits; }