Expand PMF_FN_* macros.
[netbsd-mini2440.git] / dist / ntp / libisc / lib.c
blobc3d16b80e94368e6565b1faeaa0da4cc5d9a712f
1 /* $NetBSD$ */
3 /*
4 * Copyright (C) 1999-2001 Internet Software Consortium.
6 * Permission to use, copy, modify, and 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 INTERNET SOFTWARE CONSORTIUM
11 * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
12 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
13 * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
15 * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
16 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
17 * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 /* Id: lib.c,v 1.9 2001/11/19 03:08:23 mayer Exp */
22 #include <config.h>
24 #include <stdio.h>
25 #include <stdlib.h>
27 #include <isc/once.h>
28 #include <isc/msgs.h>
29 #include <isc/lib.h>
31 /***
32 *** Globals
33 ***/
35 LIBISC_EXTERNAL_DATA isc_msgcat_t * isc_msgcat = NULL;
38 /***
39 *** Private
40 ***/
42 static isc_once_t msgcat_once = ISC_ONCE_INIT;
45 /***
46 *** Functions
47 ***/
49 static void
50 open_msgcat(void) {
51 isc_msgcat_open("libisc.cat", &isc_msgcat);
54 void
55 isc_lib_initmsgcat(void) {
56 isc_result_t result;
59 * Initialize the ISC library's message catalog, isc_msgcat, if it
60 * has not already been initialized.
63 result = isc_once_do(&msgcat_once, open_msgcat);
64 if (result != ISC_R_SUCCESS) {
66 * Normally we'd use RUNTIME_CHECK() or FATAL_ERROR(), but
67 * we can't do that here, since they might call us!
68 * (Note that the catalog might be open anyway, so we might
69 * as well try to provide an internationalized message.)
71 fprintf(stderr, "%s:%d: %s: isc_once_do() %s.\n",
72 __FILE__, __LINE__,
73 isc_msgcat_get(isc_msgcat, ISC_MSGSET_GENERAL,
74 ISC_MSG_FATALERROR, "fatal error"),
75 isc_msgcat_get(isc_msgcat, ISC_MSGSET_GENERAL,
76 ISC_MSG_FAILED, "failed"));
77 abort();