We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33e4e42 commit 08920ceCopy full SHA for 08920ce
include/stdarg.h
@@ -6,7 +6,13 @@
6
#ifndef lunatik_stdarg_h
7
#define lunatik_stdarg_h
8
9
+#include <linux/version.h>
10
+
11
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0)
12
#include <linux/stdarg.h>
13
+#else
14
+#include <stdarg.h>
15
+#endif
16
17
#endif
18
lunatik_conf.h
@@ -1,5 +1,5 @@
1
/*
2
-* SPDX-FileCopyrightText: (c) 2023-2024 Ring Zero Desenvolvimento de Software LTDA
+* SPDX-FileCopyrightText: (c) 2023-2025 Ring Zero Desenvolvimento de Software LTDA
3
* SPDX-License-Identifier: MIT OR GPL-2.0-only
4
*/
5
@@ -35,6 +35,7 @@
35
36
#define l_randomizePivot() (~0)
37
38
39
#include <linux/random.h>
40
#define luai_makeseed(L) get_random_u32()
41
0 commit comments