OP
blackneos940
Guest
This is not a Zero-Day thing. This was from the original K&R Standard, before the ISO standard for function definition. I would guess that modern compilers such as gcc or clang could produce the same code for both of these examples:
Code:foo(x, y) /* K&R */ int x; float y; { /* Code ... */ }
Some older or non-standard compliant compilers might not.Code:foo(int x, float y) /* ISO, PREFERRED */ { /* Code ... */ }
Oh no.... I meant that Microsoft Windows might get more Zero-Days BECAUSE of it's use of older standards, not that I thought that the ABOVE Code was Zero-Day.....
