aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fuzzer/Fuzzer.rs2
-rw-r--r--src/fuzzer/fuzzer.rc13
2 files changed, 15 insertions, 0 deletions
diff --git a/src/fuzzer/Fuzzer.rs b/src/fuzzer/Fuzzer.rs
new file mode 100644
index 00000000..ea3850b2
--- /dev/null
+++ b/src/fuzzer/Fuzzer.rs
@@ -0,0 +1,2 @@
+fn main() {
+} \ No newline at end of file
diff --git a/src/fuzzer/fuzzer.rc b/src/fuzzer/fuzzer.rc
new file mode 100644
index 00000000..2f0758bf
--- /dev/null
+++ b/src/fuzzer/fuzzer.rc
@@ -0,0 +1,13 @@
+// -*- rust -*-
+
+use std;
+
+mod Fuzzer;
+
+// Local Variables:
+// fill-column: 78;
+// indent-tabs-mode: nil
+// c-basic-offset: 4
+// buffer-file-coding-system: utf-8-unix
+// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
+// End: