added main.rs wrapper for frida

This commit is contained in:
Dominik Maier 2021-03-22 16:58:53 +01:00
parent 556141e9a3
commit 92dd0bfcb2

View File

@ -0,0 +1,6 @@
#[cfg(unix)]
pub use fuzzer::main;
#[cfg(not(unix))]
pub fn main() {
todo!("Frida not yet supported on this OS.");
}