mirror of
https://github.com/ipxe/ipxe
synced 2025-12-23 13:30:57 +03:00
19 lines
246 B
C
19 lines
246 B
C
#include <errno.h>
|
|
|
|
/** @file
|
|
*
|
|
* Error codes
|
|
*
|
|
* This file provides the global variable #errno.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* Global "last error" number.
|
|
*
|
|
* This is valid only when a function has just returned indicating a
|
|
* failure.
|
|
*
|
|
*/
|
|
int errno;
|