source: bootcd/isolinux/syslinux-6.03/gpxe/src/core/errno.c

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 246 bytes
Line 
1#include <errno.h>
2
3/** @file
4 *
5 * Error codes
6 *
7 * This file provides the global variable #errno.
8 *
9 */
10
11/**
12 * Global "last error" number.
13 *
14 * This is valid only when a function has just returned indicating a
15 * failure.
16 *
17 */
18int errno;
Note: See TracBrowser for help on using the repository browser.