diff options
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" + |