Module Name: src
Committed By: msaitoh
Date: Mon Oct 23 09:35:35 UTC 2017
Modified Files:
src/sys/sys: param.h
Log Message:
Change return value of if_initialize() and if_attach() from void to int.
Welcome to 8.99.4
To generate a diff of this commit:
cvs rdiff -u -r1.547 -r1.548 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.547 src/sys/sys/param.h:1.548
--- src/sys/sys/param.h:1.547 Tue Oct 10 17:20:42 2017
+++ src/sys/sys/param.h Mon Oct 23 09:35:35 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.547 2017/10/10 17:20:42 jdolecek Exp $ */
+/* $NetBSD: param.h,v 1.548 2017/10/23 09:35:35 msaitoh Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@@ -67,7 +67,7 @@
* 2.99.9 (299000900)
*/
-#define __NetBSD_Version__ 899000400 /* NetBSD 8.99.4 */
+#define __NetBSD_Version__ 899000500 /* NetBSD 8.99.4 */
#define __NetBSD_Prereq__(M,m,p) (((((M) * 100000000) + \
(m) * 1000000) + (p) * 100) <= __NetBSD_Version__)