2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

#include <stdlib.h> as va_arg may call abort(): BSDI 3.1

This commit is contained in:
Mark Andrews 2000-02-01 23:18:52 +00:00
parent c4f192b4d8
commit f43d714ada
2 changed files with 3 additions and 2 deletions

View File

@ -15,13 +15,14 @@
* SOFTWARE. * SOFTWARE.
*/ */
/* $Id: data.c,v 1.6 2000/01/31 18:52:43 gson Exp $ */ /* $Id: data.c,v 1.7 2000/02/01 23:18:51 marka Exp $ */
/* Principal Author: Ted Lemon */ /* Principal Author: Ted Lemon */
/* /*
* Functions supporting memory allocation for the object management protocol. * Functions supporting memory allocation for the object management protocol.
*/ */
#include <stdlib.h> /* abort() */
#include <string.h> /* memset */ #include <string.h> /* memset */
#include <isc/assertions.h> #include <isc/assertions.h>

View File

@ -18,7 +18,7 @@
/* /*
* Subroutines that support the generic listener object. * Subroutines that support the generic listener object.
*/ */
#include <stddef.h> /* NULL */ #include <stdlib.h> /* NULL and abort() */
#include <string.h> /* memset */ #include <string.h> /* memset */
#include <isc/assertions.h> #include <isc/assertions.h>