2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

missing includes [RT#9194]

This commit is contained in:
Mark Andrews
2003-10-01 00:58:07 +00:00
parent 54f68aeb5c
commit 12040a4f5c
2 changed files with 10 additions and 3 deletions

View File

@@ -15,16 +15,17 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: portlist.c,v 1.3 2003/03/20 00:19:55 marka Exp $ */
/* $Id: portlist.c,v 1.4 2003/10/01 00:58:07 marka Exp $ */
#include <stdlib.h>
#include <isc/mem.h>
#include <isc/magic.h>
#include <isc/mem.h>
#include <isc/mutex.h>
#include <isc/net.h>
#include <isc/refcount.h>
#include <isc/result.h>
#include <isc/string.h>
#include <isc/types.h>
#include <isc/util.h>

View File

@@ -15,12 +15,18 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: random.c,v 1.18 2003/08/05 00:08:30 marka Exp $ */
/* $Id: random.c,v 1.19 2003/10/01 00:58:07 marka Exp $ */
#include <config.h>
#include <stdlib.h>
#include <time.h> /* Required for time(). */
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <isc/mutex.h>
#include <isc/once.h>