about summary refs log tree commit diff stats
path: root/src/wrapped/wrappedpam.c
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-02-07 21:58:38 +0100
committerptitSeb <sebastien.chev@gmail.com>2024-02-07 21:58:38 +0100
commit82ae65f477f1e8ca2f0950ddcb75556757b3ee6e (patch)
tree610a3ba2cce1079caf914982795740c7a6dcb821 /src/wrapped/wrappedpam.c
parent4a3595133a2004043934d405d2c58a6c5e15ceea (diff)
downloadbox64-82ae65f477f1e8ca2f0950ddcb75556757b3ee6e.tar.gz
box64-82ae65f477f1e8ca2f0950ddcb75556757b3ee6e.zip
Added wrapped (empty) libpam.so.0
Diffstat (limited to 'src/wrapped/wrappedpam.c')
-rw-r--r--src/wrapped/wrappedpam.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/wrapped/wrappedpam.c b/src/wrapped/wrappedpam.c
new file mode 100644
index 00000000..9c1fa3de
--- /dev/null
+++ b/src/wrapped/wrappedpam.c
@@ -0,0 +1,18 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#define _GNU_SOURCE         /* See feature_test_macros(7) */
+#include <dlfcn.h>
+
+#include "wrappedlibs.h"
+
+#include "debug.h"
+#include "wrapper.h"
+#include "bridge.h"
+#include "librarian/library_private.h"
+#include "x64emu.h"
+
+const char* pamName = "libpam.so.0";
+#define LIBNAME pam
+
+#include "wrappedlib_init.h"