diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-07-12 18:51:30 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-07-12 18:51:30 +0200 |
| commit | 7c1637328a46a4cf7fa0b31320bcee76abfb2982 (patch) | |
| tree | bfd916fb8999922a5a84e012cdab6656277965ec /src/wrapped/wrappedgomp.c | |
| parent | 0224346ed876dc17ac9b61c8612dcfb64465301c (diff) | |
| download | box64-7c1637328a46a4cf7fa0b31320bcee76abfb2982.tar.gz box64-7c1637328a46a4cf7fa0b31320bcee76abfb2982.zip | |
Added empty wrapped libcap.so.2 and libgomp.so.2
Diffstat (limited to 'src/wrapped/wrappedgomp.c')
| -rw-r--r-- | src/wrapped/wrappedgomp.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/wrapped/wrappedgomp.c b/src/wrapped/wrappedgomp.c new file mode 100644 index 00000000..650da53a --- /dev/null +++ b/src/wrapped/wrappedgomp.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* gompName = "libgomp.so.1"; +#define LIBNAME gomp + +#include "wrappedlib_init.h" + |