Module Name: src
Committed By: riastradh
Date: Tue Oct 25 23:37:36 UTC 2022
Modified Files:
src/sys/external/bsd/common/include/linux: kernel.h
Log Message:
linux/kernel.h: S16_MIN, S32_MIN, S64_MIN
To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/sys/external/bsd/common/include/linux/kernel.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/external/bsd/common/include/linux/kernel.h
diff -u src/sys/external/bsd/common/include/linux/kernel.h:1.45 src/sys/external/bsd/common/include/linux/kernel.h:1.46
--- src/sys/external/bsd/common/include/linux/kernel.h:1.45 Sun Dec 19 12:02:13 2021
+++ src/sys/external/bsd/common/include/linux/kernel.h Tue Oct 25 23:37:36 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: kernel.h,v 1.45 2021/12/19 12:02:13 riastradh Exp $ */
+/* $NetBSD: kernel.h,v 1.46 2022/10/25 23:37:36 riastradh Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -53,8 +53,11 @@
#define U64_MAX UINT64_MAX
#define S16_MAX INT16_MAX
+#define S16_MIN INT16_MIN
#define S32_MAX INT32_MAX
+#define S32_MIN INT32_MIN
#define S64_MAX INT64_MAX
+#define S64_MIN INT64_MIN
#define oops_in_progress (panicstr != NULL)