1995-02-18 02:27:10 +01:00
|
|
|
/* This file is used by some of the resolver code in inet/ that
|
|
|
|
comes from BIND 4.9. I have written this file instead of modifying
|
|
|
|
those things not to use it so that I can later drop in replacement
|
|
|
|
files from future BIND distributions without change. */
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
/* Some BIND code decides it can omit the definitions of some functions
|
|
|
|
if BSD is defined to some value. That might make sense when the BIND
|
|
|
|
code is augmenting or replacing an existing system library, but we can
|
|
|
|
never omit a function here, since we are defining the system library. */
|
|
|
|
|
|
|
|
#undef BSD
|
|
|
|
|
|
|
|
/* Some code does stupid compatibility kludges for SunOS braindeath
|
|
|
|
#ifdef sun. */
|
|
|
|
|
|
|
|
#undef sun
|
1995-08-07 20:24:47 +02:00
|
|
|
|
|
|
|
/* The source code copied from BIND for inet_addr/inet_aton
|
|
|
|
doesn't actually define the functions without these macros. */
|
|
|
|
|
1995-09-08 22:24:57 +02:00
|
|
|
#define NEED_INETADDR 1
|
|
|
|
#define NEED_INETATON 1
|