Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
musl
/
src
/
network
/
herror.c
blob: 65f25ff3f45b6b0ce07ec61e8a8d54280b96817f [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<stdio.h>
#include
<netdb.h>
void
herror
(
const
char
*
msg
)
{
fprintf
(
stderr
,
"%s%s%s"
,
msg
?
msg
:
""
,
msg
?
": "
:
""
,
hstrerror
(
h_errno
));
}