aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/lib.rs b/src/lib.rs
index cdfbe1a..92267a1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,6 +1,5 @@
-#[cfg(test)]
-mod tests {
- #[test]
- fn it_works() {
- }
-}
+extern crate libc;
+
+mod screen;
+
+pub use screen::Screen;