Files
photon/libc/errno/errno.c

10 lines
113 B
C

/* XXX This isn't thread safe */
static int __errno = 0;
int *__errno_location(void)
{
return &__errno;
}