Re: Deprecation of C89?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, 2023-06-02 at 20:52 +0200, Arsen Arsenović via Gcc-help wrote:
> I was referring to -Werror=implicit-function-declaration,
> -Werror=implicit-int, -Werror=incompatible-function-pointer-types, and
> -Werror=strict-prototypes, which don't share the usual problems of
> -Werror (by being explicit, not something that's likely to change, and
> reasonable practice IMO :-) ).

-Werror=strict-prototypes is too strict IMO.  It will even break:

int test() { return 0; }

But the entire point of the C2X change about the prototype w/o a
parameter list is to make such thing reasonable, isn't it?

I guess we actually want a new warning option, like:

extern int f();             // ok
int g() { return f(); }     // ok
int h() { return f(1, 2); } // { dg-warning "the usage of non-strict prototype will be rejected by C2x" }

-- 
Xi Ruoyao <xry111@xxxxxxxxxxx>
School of Aerospace Science and Technology, Xidian University




[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux