diff options
author | dg <dg@FreeBSD.org> | 1994-09-24 02:59:15 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-09-24 02:59:15 +0000 |
commit | 8722740e7f163b275491a0b05c8640341b937558 (patch) | |
tree | b7c3f7bad4381fe5b507b6cf1947fd57803fe125 /bin/stty | |
parent | 111d145dc40797c8894e8aa7dc6632e33bce87bf (diff) | |
download | FreeBSD-src-8722740e7f163b275491a0b05c8640341b937558.zip FreeBSD-src-8722740e7f163b275491a0b05c8640341b937558.tar.gz |
Added $Id$
Diffstat (limited to 'bin/stty')
-rw-r--r-- | bin/stty/Makefile | 1 | ||||
-rw-r--r-- | bin/stty/cchar.c | 2 | ||||
-rw-r--r-- | bin/stty/extern.h | 1 | ||||
-rw-r--r-- | bin/stty/gfmt.c | 2 | ||||
-rw-r--r-- | bin/stty/key.c | 2 | ||||
-rw-r--r-- | bin/stty/modes.c | 2 | ||||
-rw-r--r-- | bin/stty/print.c | 2 | ||||
-rw-r--r-- | bin/stty/stty.1 | 1 | ||||
-rw-r--r-- | bin/stty/stty.c | 2 | ||||
-rw-r--r-- | bin/stty/stty.h | 1 | ||||
-rw-r--r-- | bin/stty/util.c | 2 |
11 files changed, 18 insertions, 0 deletions
diff --git a/bin/stty/Makefile b/bin/stty/Makefile index 69bda05..d0b160d 100644 --- a/bin/stty/Makefile +++ b/bin/stty/Makefile @@ -1,4 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 +# $Id$ PROG= stty SRCS= cchar.c gfmt.c key.c modes.c print.c stty.c util.c diff --git a/bin/stty/cchar.c b/bin/stty/cchar.c index 79cb90a..b657d25 100644 --- a/bin/stty/cchar.c +++ b/bin/stty/cchar.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint diff --git a/bin/stty/extern.h b/bin/stty/extern.h index a600ca9..aa7a35b 100644 --- a/bin/stty/extern.h +++ b/bin/stty/extern.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)extern.h 8.1 (Berkeley) 5/31/93 + * $Id$ */ int c_cchars __P((const void *, const void *)); diff --git a/bin/stty/gfmt.c b/bin/stty/gfmt.c index 97f980a..b0bf79a 100644 --- a/bin/stty/gfmt.c +++ b/bin/stty/gfmt.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint diff --git a/bin/stty/key.c b/bin/stty/key.c index cf4fde4..4b388d2 100644 --- a/bin/stty/key.c +++ b/bin/stty/key.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint diff --git a/bin/stty/modes.c b/bin/stty/modes.c index d900da9..31e716b 100644 --- a/bin/stty/modes.c +++ b/bin/stty/modes.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint diff --git a/bin/stty/print.c b/bin/stty/print.c index 21f5379..7a694bb 100644 --- a/bin/stty/print.c +++ b/bin/stty/print.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint diff --git a/bin/stty/stty.1 b/bin/stty/stty.1 index e9665d7..addbe1b 100644 --- a/bin/stty/stty.1 +++ b/bin/stty/stty.1 @@ -33,6 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)stty.1 8.4 (Berkeley) 4/18/94 +.\" $Id$ .\" .Dd April 18, 1994 .Dt STTY 1 diff --git a/bin/stty/stty.c b/bin/stty/stty.c index 4a840c2..9f8bbb1 100644 --- a/bin/stty/stty.c +++ b/bin/stty/stty.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint diff --git a/bin/stty/stty.h b/bin/stty/stty.h index 92cffcc..2b822d6 100644 --- a/bin/stty/stty.h +++ b/bin/stty/stty.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)stty.h 8.1 (Berkeley) 5/31/93 + * $Id$ */ #include <sys/ioctl.h> diff --git a/bin/stty/util.c b/bin/stty/util.c index 95bea15..2ee43ca 100644 --- a/bin/stty/util.c +++ b/bin/stty/util.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint |