summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/errno.c
blob: e6a8ae875322184e77ba38e44e0fd787fe48d141 (plain)
1
2
3
4
5
6
7
8
9
#include <errno.h>

int errno = 0;

int * __errno_location ( void )
{
  return &errno;
}