Skip to content

Commit 8347e5a

Browse files
committed
add extra module
1 parent 0dae8a4 commit 8347e5a

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

src/extra.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//! extra stuff
2+
3+
pub const NOPTS_VALUE: i64 = -9223372036854775808;

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#![allow(unused)]
22
pub mod sys;
3-
pub mod api;
3+
pub mod api;
4+
pub mod extra;

src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#![allow(unused)]
22
pub mod sys;
33
pub mod api;
4+
pub mod extra;
45

56
fn main() {
67

0 commit comments

Comments
 (0)