Skip to content

Commit

Permalink
Remove unused imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
reitermarkus committed Jan 11, 2024
1 parent 57381e8 commit 7019f37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gpio/epoll.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use libc::{
self, c_int, c_void, EFD_NONBLOCK, EFD_SEMAPHORE, EPOLL_CTL_ADD, EPOLL_CTL_DEL, EPOLL_CTL_MOD,
};

pub use libc::{epoll_event, EPOLLERR, EPOLLET, EPOLLIN, EPOLLONESHOT, EPOLLOUT, EPOLLPRI};
pub use libc::{epoll_event, EPOLLERR, EPOLLET, EPOLLIN, EPOLLPRI};

pub type Result<T> = result::Result<T, io::Error>;

Expand Down

0 comments on commit 7019f37

Please sign in to comment.