Viewing: errno.c
📄 errno.c (Read Only) ⬅ To go back
/* Per-process errno: each fork()ed process gets its own copy in its
   address space.  When true threads (clone) are added, this must become
   __thread int errno or use a TLS segment (GS/FS). */
int errno = 0;