Make HandlerFunc public, because it is part of a public interface

This commit is contained in:
Philipp Oppermann
2016-05-28 15:28:49 +02:00
parent c65b16f42d
commit 2d15a7bdb1

View File

@@ -36,7 +36,7 @@ pub struct Entry {
reserved: u32,
}
type HandlerFunc = extern "C" fn() -> !;
pub type HandlerFunc = extern "C" fn() -> !;
impl Entry {
fn new(gdt_selector: SegmentSelector, handler: HandlerFunc) -> Self {