Remove building with NOCRYPTO option
[minix.git] / external / bsd / bind / dist / bin / confgen / util.h
blob33ba8e8edc2fcdff426af5b932cc2f5ab9e5da49
1 /* $NetBSD: util.h,v 1.4 2014/12/10 04:37:51 christos Exp $ */
3 /*
4 * Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16 * PERFORMANCE OF THIS SOFTWARE.
19 /* Id: util.h,v 1.4 2009/09/29 15:06:05 fdupont Exp */
21 #ifndef RNDC_UTIL_H
22 #define RNDC_UTIL_H 1
24 /*! \file */
26 #include <isc/lang.h>
27 #include <isc/platform.h>
29 #include <isc/formatcheck.h>
31 #define NS_CONTROL_PORT 953
33 #undef DO
34 #define DO(name, function) \
35 do { \
36 result = function; \
37 if (result != ISC_R_SUCCESS) \
38 fatal("%s: %s", name, isc_result_totext(result)); \
39 else \
40 notify("%s", name); \
41 } while (/*CONSTCOND*/0)
43 ISC_LANG_BEGINDECLS
45 void
46 notify(const char *fmt, ...) ISC_FORMAT_PRINTF(1, 2);
48 ISC_PLATFORM_NORETURN_PRE void
49 fatal(const char *format, ...)
50 ISC_FORMAT_PRINTF(1, 2) ISC_PLATFORM_NORETURN_POST;
52 ISC_LANG_ENDDECLS
54 #endif /* RNDC_UTIL_H */