Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
network
herror.c
pretty
plain
permalink
blame
history
•
8 lines
•
167 B
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\n", msg?msg:"", msg?": ":"", hstrerror(h_errno));
8
}