diff options
author | charnier <charnier@FreeBSD.org> | 1998-05-18 06:51:59 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1998-05-18 06:51:59 +0000 |
commit | d40a1af7e08585baef50c2b39e2084a2895d94f9 (patch) | |
tree | 934a5d633259fb57b60f4e0c4832781b53acaa9c /bin/sleep/sleep.c | |
parent | 50b030d998b91f966fc075e6f1ea84b00c3cc91c (diff) | |
download | FreeBSD-src-d40a1af7e08585baef50c2b39e2084a2895d94f9.zip FreeBSD-src-d40a1af7e08585baef50c2b39e2084a2895d94f9.tar.gz |
Correct use of .Nm. Add rcsid.
Diffstat (limited to 'bin/sleep/sleep.c')
-rw-r--r-- | bin/sleep/sleep.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/bin/sleep/sleep.c b/bin/sleep/sleep.c index d11dd07..58f3bc8 100644 --- a/bin/sleep/sleep.c +++ b/bin/sleep/sleep.c @@ -29,8 +29,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: sleep.c,v 1.5 1997/02/22 14:05:45 peter Exp $ */ #ifndef lint @@ -40,7 +38,11 @@ static char const copyright[] = #endif /* not lint */ #ifndef lint -static char const sccsid[] = "@(#)sleep.c 8.3 (Berkeley) 4/2/94"; +#if 0 +static char sccsid[] = "@(#)sleep.c 8.3 (Berkeley) 4/2/94"; +#endif +static const char rcsid[] = + "$Id$"; #endif /* not lint */ #include <stdio.h> |