2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +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,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>