Change fuzzer to match new module standards

This commit is contained in:
Brian Anderson 2011-05-12 22:45:55 -04:00
parent 02fdd2d2d9
commit 2896a866d6
3 changed files with 4 additions and 4 deletions

View file

@ -1,3 +0,0 @@
fn main(vec[str] args) {
rustc.driver.rustc.main(args);
}

View file

@ -3,7 +3,7 @@
use std;
use rustc;
mod Fuzzer;
mod fuzzer;
// Local Variables:
// fill-column: 78;

3
src/fuzzer/fuzzer.rs Normal file
View file

@ -0,0 +1,3 @@
fn main(vec[str] args) {
rustc::driver::rustc::main(args);
}