diff options
author | unknown <monty@hundin.mysql.fi> | 2001-10-31 20:28:43 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-10-31 20:28:43 +0200 |
commit | 8ea1c487d92f011279bfacaf2c2b93dc374e5ad9 (patch) | |
tree | 92b080e5371729d9f2b8777445095eb5e0545575 /extra | |
parent | d40ce9db4705ce36d90e17e229c031b955f3722d (diff) | |
download | mariadb-git-8ea1c487d92f011279bfacaf2c2b93dc374e5ad9.tar.gz |
Portability fixes
Diffstat (limited to 'extra')
-rw-r--r-- | extra/resolveip.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/extra/resolveip.c b/extra/resolveip.c index d739f8de244..a75c7ecc97a 100644 --- a/extra/resolveip.c +++ b/extra/resolveip.c @@ -20,6 +20,9 @@ #define RESOLVE_VERSION "2.0" #include <global.h> +#include <m_ctype.h> +#include <my_sys.h> +#include <m_string.h> #include <sys/types.h> #include <sys/socket.h> #ifndef HAVE_BROKEN_NETINET_INCLUDES @@ -27,8 +30,6 @@ #endif #include <arpa/inet.h> #include <netdb.h> -#include <m_ctype.h> -#include <my_sys.h> #include <getopt.h> #if !defined(_AIX) && !defined(HAVE_UNIXWARE7_THREADS) && !defined(HAVE_UNIXWARE7_POSIX) && !defined(h_errno) |