diff options
author | Andy Fiddaman <omnios@citrus-it.co.uk> | 2022-02-23 11:09:07 +0000 |
---|---|---|
committer | Andy Fiddaman <omnios@citrus-it.co.uk> | 2022-03-02 15:22:03 +0000 |
commit | d2b76ef70a19a09ea9aab5aaeb614dc7c9d195ed (patch) | |
tree | 8480f416659f3c60402bb4242a5e3fe0158f706d /usr/src/cmd/diff/diff.h | |
parent | 63cdc4a2836cf93078a5dd140d42583170a04953 (diff) | |
download | illumos-gate-d2b76ef70a19a09ea9aab5aaeb614dc7c9d195ed.tar.gz |
14534 diff could support -q
Reviewed by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
Reviewed by: Toomas Soome <tsoome@me.com>
Approved by: Robert Mustacchi <rm@fingolfin.org>
Diffstat (limited to 'usr/src/cmd/diff/diff.h')
-rw-r--r-- | usr/src/cmd/diff/diff.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr/src/cmd/diff/diff.h b/usr/src/cmd/diff/diff.h index 3bc71686ec..420e7726a5 100644 --- a/usr/src/cmd/diff/diff.h +++ b/usr/src/cmd/diff/diff.h @@ -25,7 +25,7 @@ */ /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ -/* All Rights Reserved */ +/* All Rights Reserved */ /* * University Copyright- Copyright (c) 1982, 1986, 1988 @@ -37,12 +37,13 @@ * contributors. */ +/* + * Copyright 2022 OmniOS Community Edition (OmniOSce) Association. + */ + #ifndef _DIFF_H #define _DIFF_H -#pragma ident "%Z%%M% %I% %E% SMI" - - #ifdef __cplusplus extern "C" { #endif @@ -123,6 +124,7 @@ int bflag = 0; int tflag = 0; int wflag = 0; int iflag = 0; +int qflag = 0; int rflag = 0; int lflag = 0; int sflag = 0; |