In message <Pine.3.89.10103300924.A22782-0100000@umbar>, [EMAIL PROTECTED]
r.org writes:
>
>
>which all begs the question... what is the point of an array of size 
>zero? 

To allow you to do variable length arrays at the end of structures in a 
portable (C99) or semi-portable (gcc) way


    struct records {
        unsigned flags;
        struct foo[0] data;
    };

without jumping through casting hoops.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to