Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
wasi
libc-bottom-half
sources
__errno_location.c
pretty
plain
permalink
blame
history
•
5 lines
•
71 B
1
#include <errno.h>
2
3
int *__errno_location(void) {
4
return &errno;
5
}