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