Forgot your password?
typodupeerror

Comment Re:C standard vs C 'common usage' (Score 3, Insightful) 44

No operating system kernel - or even a non-trivial user program - is ever a strictly conforming C program; that term is so rigidly defined as to be almost useless (https://c-faq.com/ansi/compliance.html). But apart from that the Linux kernel already uses many gcc extensions, so adding another is not an issue.

Comment Re:Bad name, they're not actually microsoft (Score 1) 44

Example:

struct object {
      enum object_type type;
      union {
              struct { struct object *car; struct object *cdr; };
              double number;
      };
};

struct object *foo;

Now we can say foo->cdr instead of (say) foo->value.cons.cdr.

Slashdot Top Deals

Children begin by loving their parents. After a time they judge them. Rarely, if ever, do they forgive them. - Oscar Wilde

Working...