android13/bionic/tools/versioner/tests/unnamed_bitfield/headers/foo.h

9 lines
205 B
C

// <sys/timex.h> was causing a segfault when compiled in C++ mode because
// versioner was trying to mangle the name of an unnamed bitfield.
struct foo {
int : 32;
int : 32;
int : 32;
int : 32;
};