iPXE
errno.c
Go to the documentation of this file.
1 #include <errno.h>
2 
3 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
4 FILE_SECBOOT ( PERMITTED );
5 
6 /** @file
7  *
8  * Error codes
9  *
10  * This file provides the global variable #errno.
11  *
12  */
13 
14 /**
15  * Global "last error" number.
16  *
17  * This is valid only when a function has just returned indicating a
18  * failure.
19  *
20  */
21 int errno;
Error codes.
int errno
Global "last error" number.
Definition: errno.c:21
FILE_SECBOOT(PERMITTED)
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)