android_mt6572_jiabo/ndk/tests/device/bitfield/jni/header.h
2025-09-05 16:56:03 +08:00

12 lines
171 B
C

struct s {
unsigned int x:1;
unsigned int unused:15;
unsigned short y;
};
union u {
struct s s;
volatile int i;
};
void foo(union u *ptr, int flag);