Add libbroken.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@417 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Unknown User d91-jda
1996-04-23 07:15:17 +00:00
parent d4ebb7fe66
commit 89af9ddeda
20 changed files with 670 additions and 0 deletions

17
lib/roken/verrx.c Normal file
View File

@@ -0,0 +1,17 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "err.h"
RCSID("$Id$");
void
verrx(int eval, const char *fmt, va_list ap)
{
fprintf(stderr, "%s: ", __progname);
if (fmt != NULL)
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
exit(eval);
}