fix frida wrapper

This commit is contained in:
Dominik Maier 2021-03-22 17:02:14 +01:00
parent 92dd0bfcb2
commit 5f74a08316

View File

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