...
Code Block | ||||
---|---|---|---|---|
| ||||
extern int errno; |
Compliant Solution (
...
Declaring errno
)
The correct way to declare errno
is to include the header <errno.h>
:
...
...
Code Block | ||||
---|---|---|---|---|
| ||||
extern int errno; |
...
errno
)The correct way to declare errno
is to include the header <errno.h>
:
...