1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-03 02:50:42 +00:00

usage obsolete as refactored into wrapper.

This commit is contained in:
Renaud 2013-05-17 10:42:12 +08:00
parent 86afdef45e
commit c9a59faf42
2 changed files with 0 additions and 28 deletions

View File

@ -154,7 +154,6 @@ search.o: search.c estruct.h edef.h
spawn.o: spawn.c estruct.h edef.h
tcap.o: tcap.c estruct.h edef.h
termio.o: termio.c estruct.h edef.h
usage.o: usage.c usage.h
utf8.o: utf8.c utf8.h
vmsvt.o: vmsvt.c estruct.h edef.h
vt52.o: vt52.c estruct.h edef.h

27
usage.c
View File

@ -1,27 +0,0 @@
/* usage.c -- implements usage.h */
/* TODO: align exit return code */
#include "usage.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
static void report( const char *prefix, const char *err, va_list params) {
char msg[ 4096] ;
vsnprintf( msg, sizeof msg, err, params) ;
fprintf( stderr, "%s%s\n", prefix, msg) ;
}
void die( const char *err, ...) {
va_list params ;
va_start( params, err) ;
report( "fatal: ", err, params) ;
va_end( params) ;
exit( 128) ;
}
/* end of usage.c */