diff options
author | 2015-02-09 12:37:47 +0000 | |
---|---|---|
committer | 2015-02-09 12:37:47 +0000 | |
commit | 2059035fa8a47acdbf6eaee6fc96e70cec06470d (patch) | |
tree | 1d8e48b30c041db569b1e0e2665aab49093f6c53 | |
parent | use atomic ops to increment and decrement the device ref count in (diff) | |
download | wireguard-openbsd-2059035fa8a47acdbf6eaee6fc96e70cec06470d.tar.xz wireguard-openbsd-2059035fa8a47acdbf6eaee6fc96e70cec06470d.zip |
move zic and zdump source to appropriate directories
-rw-r--r-- | usr.sbin/zdump/Makefile | 3 | ||||
-rw-r--r-- | usr.sbin/zdump/zdump.8 (renamed from lib/libc/time/zdump.8) | 4 | ||||
-rw-r--r-- | usr.sbin/zdump/zdump.c (renamed from lib/libc/time/zdump.c) | 2 | ||||
-rw-r--r-- | usr.sbin/zic/Makefile | 5 | ||||
-rw-r--r-- | usr.sbin/zic/scheck.c (renamed from lib/libc/time/scheck.c) | 2 | ||||
-rw-r--r-- | usr.sbin/zic/zic.8 (renamed from lib/libc/time/zic.8) | 4 | ||||
-rw-r--r-- | usr.sbin/zic/zic.c (renamed from lib/libc/time/zic.c) | 2 |
7 files changed, 11 insertions, 11 deletions
diff --git a/usr.sbin/zdump/Makefile b/usr.sbin/zdump/Makefile index 7bd57307dba..a061c410137 100644 --- a/usr.sbin/zdump/Makefile +++ b/usr.sbin/zdump/Makefile @@ -1,7 +1,6 @@ -# $OpenBSD: Makefile,v 1.3 2004/07/01 21:46:37 mickey Exp $ +# $OpenBSD: Makefile,v 1.4 2015/02/09 12:37:47 tedu Exp $ PROG= zdump MAN= zdump.8 -.PATH: ${.CURDIR}/../../lib/libc/time .include <bsd.prog.mk> diff --git a/lib/libc/time/zdump.8 b/usr.sbin/zdump/zdump.8 index 7f8644c0904..0223f63cd68 100644 --- a/lib/libc/time/zdump.8 +++ b/usr.sbin/zdump/zdump.8 @@ -1,5 +1,5 @@ -.\" $OpenBSD: zdump.8,v 1.16 2012/09/13 11:14:20 millert Exp $ -.Dd $Mdocdate: September 13 2012 $ +.\" $OpenBSD: zdump.8,v 1.1 2015/02/09 12:37:47 tedu Exp $ +.Dd $Mdocdate: February 9 2015 $ .Dt ZDUMP 8 .Os .Sh NAME diff --git a/lib/libc/time/zdump.c b/usr.sbin/zdump/zdump.c index 29036452d7f..dd172221abb 100644 --- a/lib/libc/time/zdump.c +++ b/usr.sbin/zdump/zdump.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zdump.c,v 1.24 2015/02/09 10:45:56 tedu Exp $ */ +/* $OpenBSD: zdump.c,v 1.1 2015/02/09 12:37:47 tedu Exp $ */ /* ** This file is in the public domain, so clarified as of ** 2009-05-17 by Arthur David Olson. diff --git a/usr.sbin/zic/Makefile b/usr.sbin/zic/Makefile index 30749f31b19..c1ffd22d79b 100644 --- a/usr.sbin/zic/Makefile +++ b/usr.sbin/zic/Makefile @@ -1,8 +1,9 @@ -# $OpenBSD: Makefile,v 1.3 2015/02/09 11:29:19 tedu Exp $ +# $OpenBSD: Makefile,v 1.4 2015/02/09 12:37:47 tedu Exp $ PROG= zic SRCS= zic.c scheck.c MAN= zic.8 -.PATH: ${.CURDIR}/../../lib/libc/time +CFLAGS+=-I${.CURDIR}/../../lib/libc/time + .include <bsd.prog.mk> diff --git a/lib/libc/time/scheck.c b/usr.sbin/zic/scheck.c index e4f3b145b6a..268c2a38538 100644 --- a/lib/libc/time/scheck.c +++ b/usr.sbin/zic/scheck.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scheck.c,v 1.11 2015/02/09 11:29:19 tedu Exp $ */ +/* $OpenBSD: scheck.c,v 1.1 2015/02/09 12:37:47 tedu Exp $ */ /* ** This file is in the public domain, so clarified as of ** 2006-07-17 by Arthur David Olson. diff --git a/lib/libc/time/zic.8 b/usr.sbin/zic/zic.8 index f5970554525..62ea488d0a0 100644 --- a/lib/libc/time/zic.8 +++ b/usr.sbin/zic/zic.8 @@ -1,5 +1,5 @@ -.\" $OpenBSD: zic.8,v 1.28 2012/09/13 11:14:20 millert Exp $ -.Dd $Mdocdate: September 13 2012 $ +.\" $OpenBSD: zic.8,v 1.1 2015/02/09 12:37:47 tedu Exp $ +.Dd $Mdocdate: February 9 2015 $ .Dt ZIC 8 .Os .Sh NAME diff --git a/lib/libc/time/zic.c b/usr.sbin/zic/zic.c index 903fd5ece0a..e78873e2a45 100644 --- a/lib/libc/time/zic.c +++ b/usr.sbin/zic/zic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zic.c,v 1.37 2015/02/09 11:29:19 tedu Exp $ */ +/* $OpenBSD: zic.c,v 1.1 2015/02/09 12:37:47 tedu Exp $ */ /* ** This file is in the public domain, so clarified as of ** 2006-07-17 by Arthur David Olson. |