Module Name:    src
Committed By:   christos
Date:           Fri Jan 16 20:12:28 UTC 2015

Modified Files:
        src/sbin/bioctl: Makefile bioctl.c
Removed Files:
        src/sbin/bioctl: strtonum.c strtonum.h

Log Message:
kill 1 copy of strtonum.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sbin/bioctl/Makefile
cvs rdiff -u -r1.16 -r1.17 src/sbin/bioctl/bioctl.c
cvs rdiff -u -r1.1 -r0 src/sbin/bioctl/strtonum.c src/sbin/bioctl/strtonum.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sbin/bioctl/Makefile
diff -u src/sbin/bioctl/Makefile:1.4 src/sbin/bioctl/Makefile:1.5
--- src/sbin/bioctl/Makefile:1.4	Sat Apr 11 03:58:11 2009
+++ src/sbin/bioctl/Makefile	Fri Jan 16 15:12:28 2015
@@ -1,7 +1,7 @@
-#	$NetBSD: Makefile,v 1.4 2009/04/11 07:58:11 lukem Exp $
+#	$NetBSD: Makefile,v 1.5 2015/01/16 20:12:28 christos Exp $
 
 PROG=	bioctl
-SRCS=   bioctl.c strtonum.c
 MAN=	bioctl.8
+CPPFLAGS+=-D_OPENBSD_SOURCE
 
 .include <bsd.prog.mk>

Index: src/sbin/bioctl/bioctl.c
diff -u src/sbin/bioctl/bioctl.c:1.16 src/sbin/bioctl/bioctl.c:1.17
--- src/sbin/bioctl/bioctl.c:1.16	Fri Nov 14 20:52:01 2014
+++ src/sbin/bioctl/bioctl.c	Fri Jan 16 15:12:28 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: bioctl.c,v 1.16 2014/11/15 01:52:01 joerg Exp $ */
+/* $NetBSD: bioctl.c,v 1.17 2015/01/16 20:12:28 christos Exp $ */
 /* $OpenBSD: bioctl.c,v 1.52 2007/03/20 15:26:06 jmc Exp $ */
 
 /*
@@ -31,7 +31,7 @@
 #include <sys/cdefs.h>
 
 #ifndef lint
-__RCSID("$NetBSD: bioctl.c,v 1.16 2014/11/15 01:52:01 joerg Exp $");
+__RCSID("$NetBSD: bioctl.c,v 1.17 2015/01/16 20:12:28 christos Exp $");
 #endif
 
 #include <sys/types.h>
@@ -51,7 +51,6 @@ __RCSID("$NetBSD: bioctl.c,v 1.16 2014/1
 #include <unistd.h>
 #include <ctype.h>
 #include <util.h>
-#include "strtonum.h"
 
 struct command {
 	const char *cmd_name;

Reply via email to