This makes it possible to just type `cargo run` and always get the up to date client
9 lines
205 B
C
9 lines
205 B
C
#include "nyx.h"
|
|
|
|
void rust_hprintf(const char * format) {
|
|
hprintf(format);
|
|
}
|
|
|
|
uint32_t rust_perform_hypercall(uint32_t hypercall, uint32_t argument) {
|
|
return kAFL_hypercall(hypercall, argument);
|
|
} |