Home | History | Annotate | Download | only in lib

Lines Matching full:errno

1 /* get-errno.c - get and set errno.
22 #include "get-errno.h"
24 #include <errno.h>
26 /* Get and set errno. A source file that needs to set or get errno,
27 but doesn't need to test for specific errno values, can use these
29 defines EQUAL should not include <errno.h>, since <errno.h> might
30 define EQUAL; such a file can include <get-errno.h> instead. */
35 return errno;
41 errno = e;