mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-01 00:38:50 +02:00
6 lines
102 B
C++
6 lines
102 B
C++
struct OverlyAlignedChar {
|
|
char c1;
|
|
int x;
|
|
char c2;
|
|
char c __attribute__((aligned(4096)));
|
|
};
|