Blame src/die.h

Packit 33f14e
/* Report an error and exit.
Packit 33f14e
   Copyright 2016-2017 Free Software Foundation, Inc.
Packit 33f14e
Packit 33f14e
   This program is free software; you can redistribute it and/or modify
Packit 33f14e
   it under the terms of the GNU General Public License as published by
Packit 33f14e
   the Free Software Foundation; either version 3, or (at your option)
Packit 33f14e
   any later version.
Packit 33f14e
Packit 33f14e
   This program is distributed in the hope that it will be useful,
Packit 33f14e
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 33f14e
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 33f14e
   GNU General Public License for more details.
Packit 33f14e
Packit 33f14e
   You should have received a copy of the GNU General Public License
Packit 33f14e
   along with this program; if not, write to the Free Software
Packit 33f14e
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
Packit 33f14e
   02110-1301, USA.  */
Packit 33f14e
Packit 33f14e
#ifndef DIE_H
Packit 33f14e
# define DIE_H
Packit 33f14e
Packit 33f14e
# include <error.h>
Packit 33f14e
# include <stdbool.h>
Packit 33f14e
# include <verify.h>
Packit 33f14e
Packit 33f14e
/* Like 'error (STATUS, ...)', except STATUS must be a nonzero constant.
Packit 33f14e
   This may pacify the compiler or help it generate better code.  */
Packit 33f14e
# define die(status, ...) \
Packit 33f14e
  verify_expr (status, (error (status, __VA_ARGS__), assume (false)))
Packit 33f14e
Packit 33f14e
#endif /* DIE_H */