Add Bruce's _NEW_VFSCONF flag to make this compile cleanly and

sccsid -> rcsid.
This commit is contained in:
Steve Price 1997-08-07 21:31:00 +00:00
parent 6b556c4b4c
commit 16cc192af1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27962
2 changed files with 9 additions and 6 deletions

View File

@ -1,5 +1,5 @@
# $Id: Makefile,v 1.5 1997/03/13 17:29:08 bde Exp $
# @(#)Makefile 8.3 (Berkeley) 5/8/95
# $Id: Makefile,v 1.4 1997/02/22 14:02:55 peter Exp $
PROG= df
SRCS= df.c vfslist.c
@ -7,7 +7,7 @@ BINGRP= operator
BINMODE=2555
MOUNT= ${.CURDIR}/../../sbin/mount
CFLAGS+= -I${MOUNT}
CFLAGS+= -I${MOUNT} -D_NEW_VFSCONF
.PATH: ${MOUNT}
.include <bsd.prog.mk>

View File

@ -34,18 +34,21 @@
* 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: df.c,v 1.15 1997/03/13 17:41:37 bde Exp $
*/
#ifndef lint
static char const copyright[] =
static const char copyright[] =
"@(#) Copyright (c) 1980, 1990, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
static char const sccsid[] = "@(#)df.c 8.9 (Berkeley) 5/8/95";
#if 0
static char sccsid[] = "@(#)df.c 8.9 (Berkeley) 5/8/95";
#else
static const char rcsid[] =
"$Id: df.c,v 1.16 1997/03/28 15:24:17 imp Exp $";
#endif
#endif /* not lint */
#include <sys/param.h>