tls: prepare for ECDH_anon ciphers
[oweals/busybox.git] / libbb / xgethostbyname.c
index 3bb522d8045a2f1d072a5b99955066ff000992f8..89d0329cc4fbe4f333c8bc15eb91e005fa74c484 100644 (file)
@@ -4,13 +4,11 @@
  *
  * Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>.
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
-
-//#include <netdb.h>
 #include "libbb.h"
 
-struct hostent *xgethostbyname(const char *name)
+struct hostent* FAST_FUNC xgethostbyname(const char *name)
 {
        struct hostent *retval = gethostbyname(name);
        if (!retval)