mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 23:05:49 +01:00
Make it compile again in the !__STDC__ case.
Found by: Bruce.
This commit is contained in:
parent
d577e090c0
commit
16e80a4182
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=37707
@ -42,7 +42,7 @@ static const char copyright[] =
|
||||
static char sccsid[] = "@(#)newfs.c 8.13 (Berkeley) 5/1/95";
|
||||
#endif
|
||||
static const char rcsid[] =
|
||||
"$Id$";
|
||||
"$Id: newfs.c,v 1.20 1998/07/15 06:28:05 charnier Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
/*
|
||||
@ -54,6 +54,8 @@ static const char rcsid[] =
|
||||
#include <sys/file.h>
|
||||
#include <sys/mount.h>
|
||||
|
||||
#include <ufs/ufs/dir.h>
|
||||
#include <ufs/ufs/dinode.h>
|
||||
#include <ufs/ffs/fs.h>
|
||||
#include <ufs/ufs/ufsmount.h>
|
||||
|
||||
@ -74,6 +76,8 @@ static const char rcsid[] =
|
||||
|
||||
#if __STDC__
|
||||
#include <stdarg.h>
|
||||
#else
|
||||
#include <varargs.h>
|
||||
#endif
|
||||
|
||||
#include "mntopts.h"
|
||||
|
Loading…
Reference in New Issue
Block a user