Module Name: src
Committed By: knakahara
Date: Tue Sep 20 02:24:18 UTC 2022
Modified Files:
src/sys/sys: param.h
Log Message:
Welcome to 9.99.100
- changed the prototype of rt_replace_ifa_matched_entries()
See also the follwoing thread
https://mail-index.netbsd.org/tech-kern/2022/09/15/msg028385.html
Advised by [email protected], [email protected], [email protected] and [email protected], thanks.
To generate a diff of this commit:
cvs rdiff -u -r1.712 -r1.713 src/sys/sys/param.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/param.h
diff -u src/sys/sys/param.h:1.712 src/sys/sys/param.h:1.713
--- src/sys/sys/param.h:1.712 Mon Jul 18 04:30:30 2022
+++ src/sys/sys/param.h Tue Sep 20 02:24:18 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.712 2022/07/18 04:30:30 thorpej Exp $ */
+/* $NetBSD: param.h,v 1.713 2022/09/20 02:24:18 knakahara Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@@ -55,7 +55,7 @@
*
* M = major version
* m = minor version; a minor number of 99 indicates current.
- * r = 0 (*)
+ * r = 0 (*) or patchlevel in 9.99
* p = patchlevel
*
* When new releases are made, src/gnu/usr.bin/groff/tmac/mdoc.local
@@ -67,7 +67,7 @@
* 2.99.9 (299000900)
*/
-#define __NetBSD_Version__ 999009900 /* NetBSD 9.99.99 */
+#define __NetBSD_Version__ 999010000 /* NetBSD 9.99.100 */
#define __NetBSD_Prereq__(M,m,p) (((((M) * 100000000) + \
(m) * 1000000) + (p) * 100) <= __NetBSD_Version__)