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

👋 I'm Jim, a full-stack product engineer. Want to build an amazing product and a profitable business? Read more about me or Get in touch!

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