From 41e964cb5d2714801feba65ac1acf341e56e78e6 Mon Sep 17 00:00:00 2001 From: Philippe Charnier Date: Mon, 30 Jun 1997 11:10:18 +0000 Subject: Remove lines inside #ifdef 0/#endif. --- usr.bin/colrm/colrm.c | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) (limited to 'usr.bin/colrm/colrm.c') diff --git a/usr.bin/colrm/colrm.c b/usr.bin/colrm/colrm.c index 977d2ec7df36..1a50405e5a53 100644 --- a/usr.bin/colrm/colrm.c +++ b/usr.bin/colrm/colrm.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: colrm.c,v 1.3 1997/06/26 11:26:20 charnier Exp $ */ #ifndef lint @@ -139,33 +139,3 @@ usage() exit(1); } -#ifdef 0 -#if __STDC__ -#include -#else -#include -#endif - -void -#if __STDC__ -err(const char *fmt, ...) -#else -err(fmt, va_alist) - char *fmt; - va_dcl -#endif -{ - va_list ap; -#if __STDC__ - va_start(ap, fmt); -#else - va_start(ap); -#endif - (void)fprintf(stderr, "colrm: "); - (void)vfprintf(stderr, fmt, ap); - va_end(ap); - (void)fprintf(stderr, "\n"); - exit(1); - /* NOTREACHED */ -} -#endif -- cgit v1.2.3