Gast
#363147
Hallo,
neulich habe ich folgende Structure in einem Programm gesehen,
struct test {
int b0:1;
int b1:1;
int b2:1;
int b3:1;
int b4:1;
int b5:1;
int b6:1;
int b7:1;
} __attribute__((_packed_));
Was genau bedeutet hier das __attribute__((_packed_)); ?
Tom