diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-09-08 20:55:05 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-09-08 20:55:05 +0200 |
| commit | 911ecc4489593b28d87fec30e94500693d03457c (patch) | |
| tree | 2db99a92aa75da7bd2328c16e50249fe5834424e /src/wrapped/wrappedselinux.c | |
| parent | 63ab450d875018ab284f6beaa71a2b1d859051d6 (diff) | |
| download | box64-911ecc4489593b28d87fec30e94500693d03457c.tar.gz box64-911ecc4489593b28d87fec30e94500693d03457c.zip | |
Added minimal wrapped libnsp4, libnss3, libnssutil3 and linsmime3
Diffstat (limited to 'src/wrapped/wrappedselinux.c')
| -rwxr-xr-x | src/wrapped/wrappedselinux.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/wrapped/wrappedselinux.c b/src/wrapped/wrappedselinux.c new file mode 100755 index 00000000..9e58f209 --- /dev/null +++ b/src/wrapped/wrappedselinux.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 "wrapper.h" +#include "bridge.h" +#include "librarian/library_private.h" +#include "x64emu.h" + +const char* selinuxName = "libselinux.so.1"; +#define LIBNAME selinux + +#include "wrappedlib_init.h" + |