We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a2d0d5 commit b902259Copy full SHA for b902259
1 file changed
include/linux/kermit.h
@@ -0,0 +1,14 @@
1
+/* SPDX-License-Identifier: GPL-2.0-or-later */
2
+/*
3
+ * kermit.h - KernMLOps Insertion Interface
4
+ *
5
+ * Copyright (C) 2025 Aditya Tewari <adityaatewari@gmail.com>
6
+ */
7
+
8
+#ifndef _LINUX_KERMIT_H_
9
+#define _LINUX_KERMIT_H_
10
11
+#define ML_REPLACE_FUNCTION(mlfunc, normal_expression) \
12
+ ((mlfunc) ? mlfunc() : (normal_expression);)
13
14
+#endif //_LINUX_KERMIT_H_
0 commit comments