aboutsummaryrefslogtreecommitdiffstats
path: root/libtest/libtest_base_pointer.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2026-05-08 22:29:35 +0200
committerMattias Andrée <m@maandree.se>2026-05-08 22:29:35 +0200
commit2d3a573977417d917c16742d8d9d8ead047d0ebc (patch)
treecaeac52856a9df0478e2bee53e5dda1f84422461 /libtest/libtest_base_pointer.c
parentAdd DEFAULT_SUPPORT option and improve DEPENDENCIES (diff)
downloadlibrecrypt-2d3a573977417d917c16742d8d9d8ead047d0ebc.tar.gz
librecrypt-2d3a573977417d917c16742d8d9d8ead047d0ebc.tar.bz2
librecrypt-2d3a573977417d917c16742d8d9d8ead047d0ebc.tar.xz
Misc
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-rw-r--r--libtest/libtest_base_pointer.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/libtest/libtest_base_pointer.c b/libtest/libtest_base_pointer.c
new file mode 100644
index 0000000..4902643
--- /dev/null
+++ b/libtest/libtest_base_pointer.c
@@ -0,0 +1,20 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+#ifndef TEST
+
+
+extern inline void **libtest_base_pointer(void *);
+
+
+#else
+
+
+CONST int
+main(void)
+{
+ /* This one isn't that simple to test, but it works if other tests work :) */
+ return 0;
+}
+
+
+#endif