edit/sys/mod.rs
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Platform abstractions.
5
6#[cfg(unix)]
7mod unix;
8#[cfg(windows)]
9mod windows;
10
11#[cfg(not(windows))]
12pub use std::fs::canonicalize;
13
14#[cfg(unix)]
15pub use unix::*;
16#[cfg(windows)]
17pub use windows::*;