February 18, 2006
How do I perform the same functionality of

struct FOO
{
int bar;
} __attribute__((packed));

which is C code... in D? (specifcally the __attribute__((packed)) part)

Thanks,
Trevor Parscal
February 18, 2006
"Trevor Parscal" <Trevor_member@pathlink.com> wrote in message news:dt65s7$16db$1@digitaldaemon.com...
> How do I perform the same functionality of
>
> struct FOO
> {
> int bar;
> } __attribute__((packed));
>
> which is C code... in D? (specifcally the __attribute__((packed)) part)

align (1)