diff options
author | bde <bde@FreeBSD.org> | 1995-12-14 23:35:17 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-12-14 23:35:17 +0000 |
commit | 16f018693d0cc2823907040db3b0e6c9b945ed55 (patch) | |
tree | 520d257658d24869d0f4777248514df0e483dc2f /sys | |
parent | f309260c715bf4bedc2f177af38e2afc11e985ed (diff) | |
download | FreeBSD-src-16f018693d0cc2823907040db3b0e6c9b945ed55.zip FreeBSD-src-16f018693d0cc2823907040db3b0e6c9b945ed55.tar.gz |
Moved some more prototypes outside of ifdefs and grouped them together.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/amd64/amd64/autoconf.c | 12 | ||||
-rw-r--r-- | sys/i386/i386/autoconf.c | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/sys/amd64/amd64/autoconf.c b/sys/amd64/amd64/autoconf.c index 510f4ff..82d25bd 100644 --- a/sys/amd64/amd64/autoconf.c +++ b/sys/amd64/amd64/autoconf.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91 - * $Id: autoconf.c,v 1.48 1995/12/12 08:50:15 gibbs Exp $ + * $Id: autoconf.c,v 1.49 1995/12/13 15:12:13 julian Exp $ */ /* @@ -89,9 +89,6 @@ static void configure __P((void *)); SYSINIT(configure, SI_SUB_CONFIGURE, SI_ORDER_FIRST, configure, NULL) -static int setdumpdev __P((dev_t dev)); -static void setroot __P((void)); - #ifdef MFS_ROOT extern struct vfsops mfs_vfsops; #endif @@ -111,6 +108,11 @@ extern int cd9660_mountroot __P((void *)); extern int msdosfs_mountroot __P((void *)); #endif +static void configure_finish __P((void)); +static void configure_start __P((void)); +static int setdumpdev __P((dev_t dev)); +static void setroot __P((void)); + #ifdef CD9660 /* We need to try out all our potential CDROM drives, so we need a table. */ static struct { @@ -124,8 +126,6 @@ static struct { { 0, 0} }; -static void configure_finish __P((void)); -static void configure_start __P((void)); static int find_cdrom_root __P((void *)); static int diff --git a/sys/i386/i386/autoconf.c b/sys/i386/i386/autoconf.c index 510f4ff..82d25bd 100644 --- a/sys/i386/i386/autoconf.c +++ b/sys/i386/i386/autoconf.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91 - * $Id: autoconf.c,v 1.48 1995/12/12 08:50:15 gibbs Exp $ + * $Id: autoconf.c,v 1.49 1995/12/13 15:12:13 julian Exp $ */ /* @@ -89,9 +89,6 @@ static void configure __P((void *)); SYSINIT(configure, SI_SUB_CONFIGURE, SI_ORDER_FIRST, configure, NULL) -static int setdumpdev __P((dev_t dev)); -static void setroot __P((void)); - #ifdef MFS_ROOT extern struct vfsops mfs_vfsops; #endif @@ -111,6 +108,11 @@ extern int cd9660_mountroot __P((void *)); extern int msdosfs_mountroot __P((void *)); #endif +static void configure_finish __P((void)); +static void configure_start __P((void)); +static int setdumpdev __P((dev_t dev)); +static void setroot __P((void)); + #ifdef CD9660 /* We need to try out all our potential CDROM drives, so we need a table. */ static struct { @@ -124,8 +126,6 @@ static struct { { 0, 0} }; -static void configure_finish __P((void)); -static void configure_start __P((void)); static int find_cdrom_root __P((void *)); static int |