table of contents
avr_errno(3avr) | avr-libc | avr_errno(3avr) |
NAME¶
avr_errno - <errno.h>: System Errors
SYNOPSIS¶
Macros¶
#define EDOM 33
#define ERANGE 34
Variables¶
int errno
Detailed Description¶
#include <errno.h>
Some functions in the library set the global variable errno when an error occurs. The file, <errno.h>, provides symbolic names for various error codes.
Macro Definition Documentation¶
#define EDOM 33¶
Domain error.
#define ERANGE 34¶
Range error.
Variable Documentation¶
int errno [extern]¶
Error code for last error encountered by library. The variable errno holds the last error code encountered by a library function. This variable must be cleared by the user prior to calling a library function.
Warning
Author¶
Generated automatically by Doxygen for avr-libc from the source code.
Fri Jan 1 2021 | Version 2.0.0 |