diff options
author | charnier <charnier@FreeBSD.org> | 1998-05-06 06:51:42 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1998-05-06 06:51:42 +0000 |
commit | c4d26d7f835032c231da4c6219c73b2679691222 (patch) | |
tree | a83653b0a70dcb5e787512cfa4954591689bf876 /bin/dd/dd.c | |
parent | 32338c8e0512ee1c5643fd65a793a21fabadfcfa (diff) | |
download | FreeBSD-src-c4d26d7f835032c231da4c6219c73b2679691222.zip FreeBSD-src-c4d26d7f835032c231da4c6219c73b2679691222.tar.gz |
Correct use of .Nm and other cosmetics. Add rcsid. Remove unused #inc.
Diffstat (limited to 'bin/dd/dd.c')
-rw-r--r-- | bin/dd/dd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/dd/dd.c b/bin/dd/dd.c index 6078bf5..97c81c7 100644 --- a/bin/dd/dd.c +++ b/bin/dd/dd.c @@ -33,8 +33,6 @@ * 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: dd.c,v 1.12 1997/10/11 20:09:05 joerg Exp $ */ #ifndef lint @@ -44,12 +42,15 @@ static char const copyright[] = #endif /* not lint */ #ifndef lint +#if 0 static char const sccsid[] = "@(#)dd.c 8.5 (Berkeley) 4/2/94"; +#endif +static const char rcsid[] = + "$Id$"; #endif /* not lint */ #include <sys/param.h> #include <sys/stat.h> -#include <sys/ioctl.h> #include <sys/mtio.h> #include <ctype.h> @@ -57,7 +58,6 @@ static char const sccsid[] = "@(#)dd.c 8.5 (Berkeley) 4/2/94"; #include <errno.h> #include <fcntl.h> #include <locale.h> -#include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |