diff options
author | charnier <charnier@FreeBSD.org> | 1998-05-15 06:30:58 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1998-05-15 06:30:58 +0000 |
commit | cf1a881890643db8396c6b430f309529fe461a01 (patch) | |
tree | 709d2a8061e8b93da2bdf730a891006cb218f19d /bin/mv/mv.c | |
parent | 8a9755ceef4307bb15a25bc49167da719cfbc0fa (diff) | |
download | FreeBSD-src-cf1a881890643db8396c6b430f309529fe461a01.zip FreeBSD-src-cf1a881890643db8396c6b430f309529fe461a01.tar.gz |
Correct use of .Nm. Add rcsid.
Diffstat (limited to 'bin/mv/mv.c')
-rw-r--r-- | bin/mv/mv.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/bin/mv/mv.c b/bin/mv/mv.c index e30b16e..5d82177 100644 --- a/bin/mv/mv.c +++ b/bin/mv/mv.c @@ -32,8 +32,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: mv.c,v 1.16 1997/10/26 10:33:02 helbig Exp $ */ #ifndef lint @@ -43,7 +41,11 @@ static char const copyright[] = #endif /* not lint */ #ifndef lint -static char const sccsid[] = "@(#)mv.c 8.2 (Berkeley) 4/2/94"; +#if 0 +static char sccsid[] = "@(#)mv.c 8.2 (Berkeley) 4/2/94"; +#endif +static const char rcsid[] = + "$Id$"; #endif /* not lint */ #include <sys/param.h> |