diff rust/chg/src/lib.rs @ 39970:a8be2cff613f

rust-chg: add wrapper around C function
author Yuya Nishihara <yuya@tcha.org>
date Mon, 24 Sep 2018 16:22:03 +0900
parents aab43d5861bb
children b1d8acd82d60
line wrap: on
line diff
--- a/rust/chg/src/lib.rs	Mon Sep 24 16:14:35 2018 +0900
+++ b/rust/chg/src/lib.rs	Mon Sep 24 16:22:03 2018 +0900
@@ -0,0 +1,8 @@
+// Copyright 2018 Yuya Nishihara <yuya@tcha.org>
+//
+// This software may be used and distributed according to the terms of the
+// GNU General Public License version 2 or any later version.
+
+extern crate libc;
+
+pub mod procutil;