summaryrefslogtreecommitdiffstats
path: root/bin/stty
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-08-27 23:15:48 +0000
committerpeter <peter@FreeBSD.org>1999-08-27 23:15:48 +0000
commit66312e4a8d4ad8bda7524141fcd8fd3fade9e807 (patch)
treed4a3af96d7d9b2e251eca5af46bf6c70c23d8b33 /bin/stty
parent5cb30a3039d8ce0b4500713028b354539f4bc7d5 (diff)
downloadFreeBSD-src-66312e4a8d4ad8bda7524141fcd8fd3fade9e807.zip
FreeBSD-src-66312e4a8d4ad8bda7524141fcd8fd3fade9e807.tar.gz
$Id$ -> $FreeBSD$
Diffstat (limited to 'bin/stty')
-rw-r--r--bin/stty/Makefile2
-rw-r--r--bin/stty/cchar.c2
-rw-r--r--bin/stty/extern.h2
-rw-r--r--bin/stty/gfmt.c2
-rw-r--r--bin/stty/key.c2
-rw-r--r--bin/stty/modes.c2
-rw-r--r--bin/stty/print.c2
-rw-r--r--bin/stty/stty.12
-rw-r--r--bin/stty/stty.c2
-rw-r--r--bin/stty/stty.h2
-rw-r--r--bin/stty/util.c2
11 files changed, 11 insertions, 11 deletions
diff --git a/bin/stty/Makefile b/bin/stty/Makefile
index d0b160d..82b15eb 100644
--- a/bin/stty/Makefile
+++ b/bin/stty/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
-# $Id$
+# $FreeBSD$
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 f9e6e70..847cf74 100644
--- a/bin/stty/cchar.c
+++ b/bin/stty/cchar.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)cchar.c 8.5 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
- "$Id$";
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/types.h>
diff --git a/bin/stty/extern.h b/bin/stty/extern.h
index aa7a35b..27869f8 100644
--- a/bin/stty/extern.h
+++ b/bin/stty/extern.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)extern.h 8.1 (Berkeley) 5/31/93
- * $Id$
+ * $FreeBSD$
*/
int c_cchars __P((const void *, const void *));
diff --git a/bin/stty/gfmt.c b/bin/stty/gfmt.c
index 4ebd2e9..b34a117 100644
--- a/bin/stty/gfmt.c
+++ b/bin/stty/gfmt.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)gfmt.c 8.6 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
- "$Id: gfmt.c,v 1.8 1998/05/18 06:48:13 charnier Exp $";
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/types.h>
diff --git a/bin/stty/key.c b/bin/stty/key.c
index aeeeb9c..ba33a81 100644
--- a/bin/stty/key.c
+++ b/bin/stty/key.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)key.c 8.3 (Berkeley) 4/2/94";
#else
static const char rcsid[] =
- "$Id: key.c,v 1.9 1997/08/24 00:26:12 steve Exp $";
+ "$FreeBSD$";
#endif
#endif /* not lint */
diff --git a/bin/stty/modes.c b/bin/stty/modes.c
index 83eec2a..b1f333e 100644
--- a/bin/stty/modes.c
+++ b/bin/stty/modes.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)modes.c 8.3 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
- "$Id$";
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/types.h>
diff --git a/bin/stty/print.c b/bin/stty/print.c
index 8f4f013..ce479f5 100644
--- a/bin/stty/print.c
+++ b/bin/stty/print.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94";
#endif
static const char rcsid[] =
- "$Id$";
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/types.h>
diff --git a/bin/stty/stty.1 b/bin/stty/stty.1
index 1862791..335c503 100644
--- a/bin/stty/stty.1
+++ b/bin/stty/stty.1
@@ -33,7 +33,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)stty.1 8.4 (Berkeley) 4/18/94
-.\" $Id: stty.1,v 1.10 1998/06/03 04:07:59 jkoshy Exp $
+.\" $FreeBSD$
.\"
.Dd April 18, 1994
.Dt STTY 1
diff --git a/bin/stty/stty.c b/bin/stty/stty.c
index b2965a8..3b59131 100644
--- a/bin/stty/stty.c
+++ b/bin/stty/stty.c
@@ -42,7 +42,7 @@ static char const copyright[] =
static char sccsid[] = "@(#)stty.c 8.3 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
- "$Id$";
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/types.h>
diff --git a/bin/stty/stty.h b/bin/stty/stty.h
index 2b822d6..e122979 100644
--- a/bin/stty/stty.h
+++ b/bin/stty/stty.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)stty.h 8.1 (Berkeley) 5/31/93
- * $Id$
+ * $FreeBSD$
*/
#include <sys/ioctl.h>
diff --git a/bin/stty/util.c b/bin/stty/util.c
index f54ac42..b99e83f 100644
--- a/bin/stty/util.c
+++ b/bin/stty/util.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)util.c 8.3 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
- "$Id$";
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/types.h>
OpenPOWER on IntegriCloud