summaryrefslogtreecommitdiff
path: root/bin/dd
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1999-01-21 00:55:32 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1999-01-21 00:55:32 +0000
commit2e61cbb7f50878e738849ea4384118c13733f09c (patch)
treee87cf98a8f654158f3ba922ed4d31607b79c4944 /bin/dd
parent76b5366091f76c9bc73570149ef5055648fc2c39 (diff)
Diffstat (limited to 'bin/dd')
-rw-r--r--bin/dd/Makefile2
-rw-r--r--bin/dd/args.c2
-rw-r--r--bin/dd/conv.c2
-rw-r--r--bin/dd/conv_tab.c2
-rw-r--r--bin/dd/dd.12
-rw-r--r--bin/dd/dd.c2
-rw-r--r--bin/dd/dd.h2
-rw-r--r--bin/dd/extern.h2
-rw-r--r--bin/dd/misc.c2
-rw-r--r--bin/dd/position.c2
10 files changed, 10 insertions, 10 deletions
diff --git a/bin/dd/Makefile b/bin/dd/Makefile
index 56e22e090343d..880c2318925e0 100644
--- a/bin/dd/Makefile
+++ b/bin/dd/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
-# $Id: Makefile,v 1.5 1998/01/07 22:31:17 joerg Exp $
+# $Id: Makefile,v 1.6 1998/01/07 22:32:28 joerg Exp $
PROG= dd
SRCS= args.c conv.c conv_tab.c dd.c misc.c position.c
diff --git a/bin/dd/args.c b/bin/dd/args.c
index 56c51fd9c2285..127f37f9cd033 100644
--- a/bin/dd/args.c
+++ b/bin/dd/args.c
@@ -40,7 +40,7 @@
static char sccsid[] = "@(#)args.c 8.3 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
- "$Id: args.c,v 1.12 1998/05/06 06:51:29 charnier Exp $";
+ "$Id: args.c,v 1.13 1998/05/13 07:33:36 charnier Exp $";
#endif /* not lint */
#include <sys/types.h>
diff --git a/bin/dd/conv.c b/bin/dd/conv.c
index 84552a2c20834..8583d7e8abb99 100644
--- a/bin/dd/conv.c
+++ b/bin/dd/conv.c
@@ -40,7 +40,7 @@
static char sccsid[] = "@(#)conv.c 8.3 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
- "$Id: conv.c,v 1.9 1998/05/06 06:51:30 charnier Exp $";
+ "$Id: conv.c,v 1.10 1998/05/13 07:33:39 charnier Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/bin/dd/conv_tab.c b/bin/dd/conv_tab.c
index f5fe7ac98e110..a86746728214a 100644
--- a/bin/dd/conv_tab.c
+++ b/bin/dd/conv_tab.c
@@ -40,7 +40,7 @@
static char sccsid[] = "@(#)conv_tab.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
- "$Id: conv_tab.c,v 1.7 1998/05/06 06:51:32 charnier Exp $";
+ "$Id: conv_tab.c,v 1.8 1998/05/13 07:33:44 charnier Exp $";
#endif /* not lint */
#include <sys/types.h>
diff --git a/bin/dd/dd.1 b/bin/dd/dd.1
index bfe05eeee2856..896332b158779 100644
--- a/bin/dd/dd.1
+++ b/bin/dd/dd.1
@@ -33,7 +33,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)dd.1 8.2 (Berkeley) 1/13/94
-.\" $Id: dd.1,v 1.6 1997/10/11 20:09:04 joerg Exp $
+.\" $Id: dd.1,v 1.7 1998/05/06 06:51:35 charnier Exp $
.\"
.Dd January 13, 1994
.Dt DD 1
diff --git a/bin/dd/dd.c b/bin/dd/dd.c
index 1e1c52f3320a8..14cc6e86336d1 100644
--- a/bin/dd/dd.c
+++ b/bin/dd/dd.c
@@ -46,7 +46,7 @@ static char const copyright[] =
static char sccsid[] = "@(#)dd.c 8.5 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
- "$Id: dd.c,v 1.14 1998/05/06 06:51:39 charnier Exp $";
+ "$Id: dd.c,v 1.15 1998/05/13 07:33:47 charnier Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/bin/dd/dd.h b/bin/dd/dd.h
index 58a156868c52b..542a81ad403dd 100644
--- a/bin/dd/dd.h
+++ b/bin/dd/dd.h
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* @(#)dd.h 8.3 (Berkeley) 4/2/94
- * $Id: dd.h,v 1.7 1997/10/11 20:09:05 joerg Exp $
+ * $Id: dd.h,v 1.8 1998/02/11 02:23:31 asami Exp $
*/
/* Input/output stream state. */
diff --git a/bin/dd/extern.h b/bin/dd/extern.h
index 7445fee4b0831..7e19112798849 100644
--- a/bin/dd/extern.h
+++ b/bin/dd/extern.h
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* @(#)extern.h 8.3 (Berkeley) 4/2/94
- * $Id$
+ * $Id: extern.h,v 1.4 1997/02/22 14:02:46 peter Exp $
*/
#include <sys/cdefs.h>
diff --git a/bin/dd/misc.c b/bin/dd/misc.c
index 6f7fcafcd2f8d..02ae07a261b6b 100644
--- a/bin/dd/misc.c
+++ b/bin/dd/misc.c
@@ -40,7 +40,7 @@
static char sccsid[] = "@(#)misc.c 8.3 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
- "$Id: misc.c,v 1.13 1998/05/06 06:51:40 charnier Exp $";
+ "$Id: misc.c,v 1.14 1998/05/13 07:33:50 charnier Exp $";
#endif /* not lint */
#include <sys/types.h>
diff --git a/bin/dd/position.c b/bin/dd/position.c
index 03ffed24f8965..7a1f9ca6337a0 100644
--- a/bin/dd/position.c
+++ b/bin/dd/position.c
@@ -40,7 +40,7 @@
static char sccsid[] = "@(#)position.c 8.3 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
- "$Id: position.c,v 1.7 1998/05/06 06:51:42 charnier Exp $";
+ "$Id: position.c,v 1.8 1998/05/13 07:33:54 charnier Exp $";
#endif /* not lint */
#include <sys/types.h>