]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
silence compiler
authorMark Andrews <marka@isc.org>
Tue, 19 Mar 2002 15:57:23 +0000 (15:57 +0000)
committerMark Andrews <marka@isc.org>
Tue, 19 Mar 2002 15:57:23 +0000 (15:57 +0000)
contrib/sdb/pgsql/zonetodb.c

index 3e179f34444bbb3e399294ba88e4983b54af4f5d..5777c04b4677ed0656827297c7ec8dc1ee7cc725 100644 (file)
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: zonetodb.c,v 1.11 2002/03/19 03:32:08 marka Exp $ */
+/* $Id: zonetodb.c,v 1.12 2002/03/19 15:57:23 marka Exp $ */
+
+#include <stdlib.h>
+#include <string.h>
 
 #include <isc/buffer.h>
 #include <isc/mem.h>
@@ -29,6 +32,7 @@
 #include <dns/rdata.h>
 #include <dns/rdataset.h>
 #include <dns/rdatasetiter.h>
+#include <dns/rdatatype.h>
 #include <dns/result.h>
 
 #include <pgsql/libpq-fe.h>
@@ -273,4 +277,5 @@ main(int argc, char **argv) {
        dns_db_detach(&db);
        isc_mem_destroy(&mctx);
        closeandexit(0);
+       exit(0);
 }