blob: a9f3462b422f0e921ad9a4adc540e07ba17812c5 [file] [log] [blame]
#include <stdio.h>
static struct sss{
float f;
char :0;
int i;
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("+++char zerofield inside struct starting with float:\n");
printf ("size=%d,align=%d\n", sizeof (sss), __alignof__ (sss));
printf ("offset-float=%d,offset-last=%d,\nalign-float=%d,align-last=%d\n",
_offsetof (struct sss, f), _offsetof (struct sss, i),
__alignof__ (sss.f), __alignof__ (sss.i));
return 0;
}