You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ clang --version
clang version 18.1.6
Target: x86_64-w64-windows-gnu
$ clang --std=c17 -c c.c
c.c:4:12: error: call to undeclared function '_j1'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
4 | return _j1(a);
| ^
1 error generated.
Those functions are declared behind #ifndef __STRICT_ANSI__, why?
The text was updated successfully, but these errors were encountered:
Source code
Expected Behavior
Actual Behavior
Those functions are declared behind
#ifndef __STRICT_ANSI__
, why?The text was updated successfully, but these errors were encountered: