=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/hexdump/odsyntax.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- src/usr.bin/hexdump/odsyntax.c 1997/01/15 23:42:34 1.3 +++ src/usr.bin/hexdump/odsyntax.c 2001/07/12 05:17:10 1.4 @@ -1,4 +1,4 @@ -/* $OpenBSD: odsyntax.c,v 1.3 1997/01/15 23:42:34 millert Exp $ */ +/* $OpenBSD: odsyntax.c,v 1.4 2001/07/12 05:17:10 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -35,11 +35,12 @@ #ifndef lint /*static char sccsid[] = "from: @(#)odsyntax.c 5.4 (Berkeley) 3/8/91";*/ -static char rcsid[] = "$OpenBSD: odsyntax.c,v 1.3 1997/01/15 23:42:34 millert Exp $"; +static char rcsid[] = "$OpenBSD: odsyntax.c,v 1.4 2001/07/12 05:17:10 deraadt Exp $"; #endif /* not lint */ #include #include +#include #include #include "hexdump.h" @@ -152,6 +153,7 @@ #define ishexdigit(c) \ (c >= '0' && c <= '9' || c >= 'a' && c <= 'f' || c >= 'A' && c <= 'F') +void odoffset(argc, argvp) int argc; char ***argvp;