3 * Reporting errors and things
5 * (c) 1998 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of the mLib utilities library.
12 * mLib is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
17 * mLib is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
22 * You should have received a copy of the GNU Library General Public
23 * License along with mLib; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
35 /*----- Header files ------------------------------------------------------*/
41 /*----- Functions provided ------------------------------------------------*/
45 * Arguments: @const char *f@ = a @printf@-style format string
46 * @...@ = other arguments
50 * Use: Reports an error.
53 extern PRINTF_LIKE(1, 2) void moan(const char *f, ...);
57 * Arguments: @int status@ = exit status to return
58 * @const char *f@ = a @printf@-style format string
59 * @...@ = other arguments
63 * Use: Reports an error and exits. Like @moan@ above, only more
67 extern PRINTF_LIKE(2, 3) NORETURN void die(int status, const char *f, ...);
69 /*----- That's all, folks -------------------------------------------------*/