Blame panic.h

Packit 081926
/* 
Packit 081926
 *  panic.h -  header for at(1)
Packit 081926
 *  Copyright (C) 1993  Thomas Koenig
Packit 081926
 *
Packit 081926
 *  This program is free software; you can redistribute it and/or modify
Packit 081926
 *  it under the terms of the GNU General Public License as published by
Packit 081926
 *  the Free Software Foundation; either version 2 of the License, or
Packit 081926
 *  (at your option) any later version.
Packit 081926
 *
Packit 081926
 *  This program is distributed in the hope that it will be useful,
Packit 081926
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 081926
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 081926
 *  GNU General Public License for more details.
Packit 081926
 *
Packit 081926
 *  You should have received a copy of the GNU General Public License
Packit 081926
 *  along with this program; if not, write to the Free Software
Packit 081926
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
Packit 081926
 */
Packit 081926
Packit 081926
void
Packit 081926
#ifdef HAVE_ATTRIBUTE_NORETURN
Packit 081926
__attribute__((noreturn))
Packit 081926
#endif
Packit 081926
panic(char *a);
Packit 081926
void
Packit 081926
#ifdef HAVE_ATTRIBUTE_NORETURN
Packit 081926
__attribute__((noreturn))
Packit 081926
#endif
Packit 081926
perr(const char *a, ...);
Packit 081926
void
Packit 081926
#ifdef HAVE_ATTRIBUTE_NORETURN
Packit 081926
__attribute__((noreturn))
Packit 081926
#endif
Packit 081926
usage(void);