From d3106d444aff90aadd1b900a65043c8f4d21db78 Mon Sep 17 00:00:00 2001 From: charnier Date: Wed, 23 Jul 1997 06:46:10 +0000 Subject: Use err(3) instead of local redefinition. --- usr.bin/look/look.1 | 8 ++++---- usr.bin/look/look.c | 52 ++++++++++++++-------------------------------------- 2 files changed, 18 insertions(+), 42 deletions(-) (limited to 'usr.bin') diff --git a/usr.bin/look/look.1 b/usr.bin/look/look.1 index be6f666..d19cb00 100644 --- a/usr.bin/look/look.1 +++ b/usr.bin/look/look.1 @@ -38,21 +38,21 @@ .Nm look .Nd display lines beginning with a given string .Sh SYNOPSIS -.Nm look +.Nm .Op Fl df .Op Fl t Ar termchar .Ar string .Op Ar file .Sh DESCRIPTION The -.Nm look +.Nm utility displays any lines in .Ar file which contain .Ar string as a prefix. As -.Nm look +.Nm performs a binary search, the lines in .Ar file must be sorted. @@ -81,7 +81,7 @@ are compared. .El .Pp The -.Nm look +.Nm utility exits 0 if one or more lines were found and displayed, 1 if no lines were found, and >1 if an error occurred. .Sh FILES diff --git a/usr.bin/look/look.c b/usr.bin/look/look.c index c3b7480..31d4e3c 100644 --- a/usr.bin/look/look.c +++ b/usr.bin/look/look.c @@ -35,13 +35,17 @@ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1991, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint +#if 0 static char sccsid[] = "@(#)look.c 8.2 (Berkeley) 5/4/95"; +#endif +static const char rcsid[] = + "$Id$"; #endif /* not lint */ /* @@ -56,12 +60,12 @@ static char sccsid[] = "@(#)look.c 8.2 (Berkeley) 5/4/95"; #include #include -#include -#include #include +#include #include #include #include +#include #include #include #include @@ -88,13 +92,13 @@ int dflag, fflag; char *binary_search __P((unsigned char *, unsigned char *, unsigned char *)); int compare __P((unsigned char *, unsigned char *, unsigned char *)); -void err __P((const char *fmt, ...)); char *linear_search __P((unsigned char *, unsigned char *, unsigned char *)); int look __P((unsigned char *, unsigned char *, unsigned char *)); void print_from __P((unsigned char *, unsigned char *, unsigned char *)); static void usage __P((void)); +int main(argc, argv) int argc; char *argv[]; @@ -142,16 +146,17 @@ main(argc, argv) *++p = '\0'; if ((fd = open(file, O_RDONLY, 0)) < 0 || fstat(fd, &sb)) - err("%s: %s", file, strerror(errno)); + err(2, "%s", file); if (sb.st_size > SIZE_T_MAX) - err("%s: %s", file, strerror(EFBIG)); + errx(2, "%s: %s", file, strerror(EFBIG)); if ((front = mmap(NULL, (size_t)sb.st_size, PROT_READ, MAP_SHARED, fd, (off_t)0)) == MAP_FAILED) - err("%s: %s", file, strerror(errno)); + err(2, "%s", file); back = front + sb.st_size; exit(look(string, front, back)); } +int look(string, front, back) unsigned char *string, *front, *back; { @@ -284,9 +289,9 @@ print_from(string, front, back) for (; front < back && compare(string, front, back) == EQUAL; ++front) { for (; front < back && *front != '\n'; ++front) if (putchar(*front) == EOF) - err("stdout: %s", strerror(errno)); + err(2, "stdout"); if (putchar('\n') == EOF) - err("stdout: %s", strerror(errno)); + err(2, "stdout"); } } @@ -332,32 +337,3 @@ usage() (void)fprintf(stderr, "usage: look [-df] [-t char] string [file]\n"); exit(2); } - -#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, "look: "); - (void)vfprintf(stderr, fmt, ap); - va_end(ap); - (void)fprintf(stderr, "\n"); - exit(2); - /* NOTREACHED */ -} -- cgit v1.1