/*
 * dummy.c --- unimplemented netdb functions 
 *
 * Created      : Sat Mar 20 10:06:38 1993 ppessi
 * Last modified: Sat Mar 20 10:15:21 1993 ppessi
 *
 */

#include <netdb.h>
#if !__SASC
#define NULL ((void *) 0)
#endif
struct hostent *
gethostent (void)
{
  return NULL;
}
struct netent *
getnetent (void)
{
  return NULL;
}
struct servent *
getservent (void)
{
  return NULL;
}
struct protoent *
getprotoent (void)
{
  return NULL;
}
