Prototypes for mountroot, etc. are now in sys/systm.h--use ufs/ffs/ffs_extern.h
authorbriggs <briggs@openbsd.org>
Wed, 1 Jan 1997 14:59:46 +0000 (14:59 +0000)
committerbriggs <briggs@openbsd.org>
Wed, 1 Jan 1997 14:59:46 +0000 (14:59 +0000)
for ffs_mountroot proto.

sys/arch/mac68k/mac68k/autoconf.c

index 131fc4a..9e8bbee 100644 (file)
@@ -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;