summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/network/herror.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/network/herror.c')
-rw-r--r--libc-top-half/musl/src/network/herror.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/network/herror.c b/libc-top-half/musl/src/network/herror.c
new file mode 100644
index 0000000..87f8cff
--- /dev/null
+++ b/libc-top-half/musl/src/network/herror.c
@@ -0,0 +1,8 @@
+#define _GNU_SOURCE
+#include <stdio.h>
+#include <netdb.h>
+
+void herror(const char *msg)
+{
+ fprintf(stderr, "%s%s%s\n", msg?msg:"", msg?": ":"", hstrerror(h_errno));
+}