summaryrefslogtreecommitdiffstats
path: root/third_party/rust/remove_dir_all/src/lib.rs
blob: 1f73c2034a6767c0ab2fe52078d40f9f98991535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(windows)]
extern crate winapi;

#[cfg(test)]
#[macro_use]
extern crate doc_comment;

#[cfg(test)]
doctest!("../README.md");

#[cfg(windows)]
mod fs;

#[cfg(windows)]
pub use self::fs::remove_dir_all;

#[cfg(not(windows))]
pub use std::fs::remove_dir_all;