]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/network/herror.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / network / herror.c
1 #define _GNU_SOURCE
2 #include <stdio.h>
3 #include <netdb.h>
4
5 void herror(const char *msg)
6 {
7 fprintf(stderr, "%s%s%s", msg?msg:"", msg?": ":"", hstrerror(h_errno));
8 }