summary refs log tree commit diff
path: root/p9/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'p9/src/lib.rs')
-rw-r--r--p9/src/lib.rs9
1 files changed, 4 insertions, 5 deletions
diff --git a/p9/src/lib.rs b/p9/src/lib.rs
index 80f74d8..ef0744e 100644
--- a/p9/src/lib.rs
+++ b/p9/src/lib.rs
@@ -2,13 +2,12 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
+extern crate libc;
+
 #[macro_use]
 extern crate wire_format_derive;
 
 mod protocol;
+mod server;
 
-#[derive(P9WireFormat)]
-struct Test {
-    a: u32,
-    b: u16,
-}
+pub use server::Server;