| #include "libhfcommon/common.h" | |
| #include "libhfcommon/files.h" | |
| #include "libhfcommon/log.h" | |
| #include "libhfcommon/ns.h" | |
| #include "libhfuzz/libhfuzz.h" | |
| #if defined(_HF_ARCH_LINUX) | |
| bool linuxEnterNs(uintptr_t cloneFlags) { | |
| return nsEnter(cloneFlags); | |
| } | |
| bool linuxIfaceUp(const char* ifacename) { | |
| return nsIfaceUp(ifacename); | |
| } | |
| bool linuxMountTmpfs(const char* dst, const char* opts) { | |
| return nsMountTmpfs(dst, opts); | |
| } | |
| #endif /* defined(_HF_ARCH_LINUX) */ |