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://ancillary-proxy.atarimworker.io?url=https%3A%2F%2Fc-faq.com%2Fansi%2Fcompliance.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

"By the time they had diminished from 50 to 8, the other dwarves began to suspect "Hungry." -- a Larson cartoon

Working...