Move popcount et al to src/common and add popcount32/popcount64.
[netbsd-mini2440.git] / lib / libc / resolv / __res_close.c
blobddc7b21a903edf618143934258b3b53a45db3f2d
1 /* $NetBSD: __res_close.c,v 1.3 2005/07/30 15:21:20 christos Exp $ */
3 /*
4 * written by matthew green, 22/04/97.
5 * public domain.
6 */
8 #include <sys/cdefs.h>
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: __res_close.c,v 1.3 2005/07/30 15:21:20 christos Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #if defined(__indr_reference)
14 __indr_reference(__res_close, res_close)
15 #else
17 #include <sys/types.h>
18 #include <netinet/in.h>
19 #include <resolv.h>
21 /* XXX THIS IS A MESS! SEE <resolv.h> XXX */
23 #undef res_close
24 void res_close(void);
26 void
27 res_close(void)
30 __res_close();
33 #endif