xref: /netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/netdb.h (revision 4afad4b7fa6d4a0d3dedf41d1587a7250710ae54)
1 /*	$NetBSD: netdb.h,v 1.1 2024/02/18 20:57:58 christos Exp $	*/
2 
3 /*
4  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
5  *
6  * SPDX-License-Identifier: MPL-2.0
7  *
8  * This Source Code Form is subject to the terms of the Mozilla Public
9  * License, v. 2.0. If a copy of the MPL was not distributed with this
10  * file, you can obtain one at https://mozilla.org/MPL/2.0/.
11  *
12  * See the COPYRIGHT file distributed with this work for additional
13  * information regarding copyright ownership.
14  */
15 
16 #ifndef ISC_NETDB_H
17 #define ISC_NETDB_H 1
18 
19 /*****
20 ***** Module Info
21 *****/
22 
23 /*! \file
24  * \brief
25  * Portable netdb.h support.
26  *
27  * This module is responsible for defining the get<x>by<y> APIs.
28  *
29  * MP:
30  *\li	No impact.
31  *
32  * Reliability:
33  *\li	No anticipated impact.
34  *
35  * Resources:
36  *\li	N/A.
37  *
38  * Security:
39  *\li	No anticipated impact.
40  *
41  * Standards:
42  *\li	BSD API
43  */
44 
45 /***
46  *** Imports.
47  ***/
48 
49 #include <netdb.h>
50 
51 #include <isc/net.h>
52 
53 #endif /* ISC_NETDB_H */
54