]> git.proxmox.com Git - wasi-libc.git/blob - libc-bottom-half/sources/__errno_location.c
Define an `__errno_location` function. (#347)
[wasi-libc.git] / libc-bottom-half / sources / __errno_location.c
1 #include <errno.h>
2
3 int *__errno_location(void) {
4 return &errno;
5 }