Added netdev_nullify to natsemi_remove()
[gpxe.git] / src / core / errno.c
blobb4f44cecf4e16bb7b32722a811281b70b217953a
1 #include <errno.h>
3 /** @file
5 * Error codes
7 * This file provides the global variable #errno.
9 */
11 /**
12 * Global "last error" number.
14 * This is valid only when a function has just returned indicating a
15 * failure.
18 int errno;