From owner-cvs-bin Thu Aug 7 14:42:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA02672 for cvs-bin-outgoing; Thu, 7 Aug 1997 14:42:58 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA02642; Thu, 7 Aug 1997 14:42:41 -0700 (PDT) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id OAA01471; Thu, 7 Aug 1997 14:42:21 -0700 (PDT) Date: Thu, 7 Aug 1997 14:42:21 -0700 (PDT) Message-Id: <199708072142.OAA01471@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG Subject: cvs commit: src/bin/csh Makefile alloc.c char.c const.c csh.c csh.h dir.c dol.c err.c exec.c exp.c file.c func.c glob.c hist.c init.c lex.c misc.c parse.c pathnames.h proc.c sem.c set.c str.c time.c Sender: owner-cvs-bin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk steve 1997/08/07 14:42:20 PDT Modified files: bin/csh Makefile alloc.c char.c const.c csh.c csh.h dir.c dol.c err.c exec.c exp.c file.c func.c glob.c hist.c init.c lex.c misc.c parse.c pathnames.h proc.c sem.c set.c str.c time.c Log: Changes include: sccsid -> rcsid, bcopy -> memcpy, don't use the register keyword, and -Wall cleaning. Obtained from: similar changes in NetBSD Revision Changes Path 1.8 +11 -11 src/bin/csh/Makefile 1.7 +5 -2 src/bin/csh/alloc.c 1.5 +5 -2 src/bin/csh/char.c 1.7 +5 -2 src/bin/csh/const.c 1.9 +24 -21 src/bin/csh/csh.c 1.5 +4 -4 src/bin/csh/csh.h 1.7 +29 -26 src/bin/csh/dir.c 1.6 +27 -24 src/bin/csh/dol.c 1.5 +6 -3 src/bin/csh/err.c 1.7 +30 -27 src/bin/csh/exec.c 1.5 +49 -46 src/bin/csh/exp.c 1.7 +31 -28 src/bin/csh/file.c 1.8 +54 -51 src/bin/csh/func.c 1.9 +18 -15 src/bin/csh/glob.c 1.5 +12 -9 src/bin/csh/hist.c 1.5 +5 -3 src/bin/csh/init.c 1.7 +51 -48 src/bin/csh/lex.c 1.6 +37 -34 src/bin/csh/misc.c 1.6 +34 -31 src/bin/csh/parse.c 1.5 +2 -2 src/bin/csh/pathnames.h 1.5 +48 -45 src/bin/csh/proc.c 1.6 +14 -11 src/bin/csh/sem.c 1.7 +51 -47 src/bin/csh/set.c 1.6 +40 -37 src/bin/csh/str.c 1.8 +14 -11 src/bin/csh/time.c