29 lines
399 B
C
29 lines
399 B
C
/* $NetBSD: __res_close.c,v 1.2 1997/04/22 18:51:53 cgd Exp $ */
|
|
|
|
/*
|
|
* written by matthew green, 22/04/97.
|
|
* public domain.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#ifdef __indr_reference
|
|
__indr_reference(__res_close,_res_close);
|
|
#else
|
|
|
|
#include <sys/types.h>
|
|
#include <netinet/in.h>
|
|
#include <resolv.h>
|
|
|
|
extern void __res_close __P((void));
|
|
|
|
#undef _res_close
|
|
void
|
|
_res_close()
|
|
{
|
|
|
|
__res_close();
|
|
}
|
|
|
|
#endif
|