Module Name:    src
Committed By:   tsutsui
Date:           Sun May 19 15:44:22 UTC 2024

Modified Files:
        src/usr.sbin/installboot: installboot.h

Log Message:
Reorder function prototypes per source files.


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/usr.sbin/installboot/installboot.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.sbin/installboot/installboot.h
diff -u src/usr.sbin/installboot/installboot.h:1.43 src/usr.sbin/installboot/installboot.h:1.44
--- src/usr.sbin/installboot/installboot.h:1.43	Sun Jul 10 19:28:00 2022
+++ src/usr.sbin/installboot/installboot.h	Sun May 19 15:44:21 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: installboot.h,v 1.43 2022/07/10 19:28:00 brook Exp $	*/
+/*	$NetBSD: installboot.h,v 1.44 2024/05/19 15:44:21 tsutsui Exp $	*/
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -171,15 +171,19 @@ int		shared_bbinfo_clearboot(ib_params *
 int		shared_bbinfo_setboot(ib_params *, struct bbinfo_params *,
 		    int (*)(ib_params *, struct bbinfo_params *, uint8_t *));
 
-	/* fstypes.c */
-int		hardcode_stage2(ib_params *, uint32_t *, ib_block *);
+	/* ext2fs.c */
+int		ext2fs_match(ib_params *);
+int		ext2fs_findstage2(ib_params *, uint32_t *, ib_block *);
+
+	/* ffs.c */
 int		ffs_match(ib_params *);
 int		ffs_findstage2(ib_params *, uint32_t *, ib_block *);
 int		raid_match(ib_params *);
+
+	/* fstypes.c */
+int		hardcode_stage2(ib_params *, uint32_t *, ib_block *);
 int		raw_match(ib_params *);
 int		raw_findstage2(ib_params *, uint32_t *, ib_block *);
-int		ext2fs_match(ib_params *);
-int		ext2fs_findstage2(ib_params *, uint32_t *, ib_block *);
 
 	/* machines.c */
 extern struct ib_mach ib_mach_alpha;

Reply via email to