What is errno in C?

You may see references to errno in C code. This is defined in <errno.h> as:

#define errno (*__error())

That is, errno dereferences a call to a function __error. This is defined as

extern int * __error(void);

That is, a function which takes no arguments and returns a non-null pointer to the error number.

The docs say

errno is defined by the ISO C standard to be a modifiable lvalue of type int

That is, we should be able to assign to errno. This is possible, because *V is also an lvalue.

These details aside, errno is basically a global int value. Its value is set by some system calls. It’s an assistant to the “return -1” idiom.

Tagged #c, #programming.

Similar posts

More by Jim

Want to build a fantastic product using LLMs? I work at Granola where we're building the future IDE for knowledge work. Come and work with us! Read more or get in touch!

This page copyright James Fisher 2016. Content is not associated with my employer. Found an error? Edit this page.