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

int errno = 0;

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