busybox/libbb/xgethostbyname.c

18 lines
414 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
/*
* Mini xgethostbyname implementation.
*
* Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>.
*
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
*/
#include "libbb.h"
struct hostent* FAST_FUNC xgethostbyname(const char *name)
{
2006-11-22 02:05:22 +05:30
struct hostent *retval = gethostbyname(name);
if (!retval)
2003-03-19 14:43:01 +05:30
bb_herror_msg_and_die("%s", name);
return retval;
}