diff options
author | briggs <briggs@cvs.openbsd.org> | 1997-01-01 14:59:47 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1997-01-01 14:59:47 +0000 |
commit | fcfa4407b9d7fbd581cf9a41154b661f7c92d797 (patch) | |
tree | 2d0be400e3f091b91cccb398430d02e041e0e77c | |
parent | ec549237cabba00d02cc192aa534ce34cba71264 (diff) |
Prototypes for mountroot, etc. are now in sys/systm.h--use ufs/ffs/ffs_extern.h
for ffs_mountroot proto.
-rw-r--r-- | sys/arch/mac68k/mac68k/autoconf.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/arch/mac68k/mac68k/autoconf.c b/sys/arch/mac68k/mac68k/autoconf.c index 131fc4a15fc..9e8bbee3791 100644 --- a/sys/arch/mac68k/mac68k/autoconf.c +++ b/sys/arch/mac68k/mac68k/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.8 1996/06/23 15:59:42 briggs Exp $ */ +/* $OpenBSD: autoconf.c,v 1.9 1997/01/01 14:59:46 briggs Exp $ */ /* $NetBSD: autoconf.c,v 1.31 1996/06/19 03:21:03 scottr Exp $ */ /* @@ -71,6 +71,8 @@ #include <scsi/scsi_all.h> #include <scsi/scsiconf.h> +#include <ufs/ffs/ffs_extern.h> + struct device *booted_device; int booted_partition; @@ -236,16 +238,11 @@ setroot(void) register int len; dev_t nrootdev, nswapdev = NODEV; char buf[128]; - extern int (*mountroot) __P((void *)); dev_t temp; struct device *bootdv, *rootdv, *swapdv; int bootpartition; #if defined(NFSCLIENT) extern char *nfsbootdevname; - extern int nfs_mountroot __P((void *)); -#endif -#if defined(FFS) - extern int ffs_mountroot __P((void *)); #endif bootdv = booted_device; |