Alters the behavior of the 'Create NAT on tunnel' to also add the appropriate NAT...
[tomato.git] / release / src / router / busybox / libbb / xgethostbyname.c
blob89d0329cc4fbe4f333c8bc15eb91e005fa74c484
1 /* vi: set sw=4 ts=4: */
2 /*
3 * Mini xgethostbyname implementation.
5 * Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>.
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */
9 #include "libbb.h"
11 struct hostent* FAST_FUNC xgethostbyname(const char *name)
13 struct hostent *retval = gethostbyname(name);
14 if (!retval)
15 bb_herror_msg_and_die("%s", name);
16 return retval;