common: Move panic handler out of libcommon.
[gps-watch.git] / src / common / lib.rs
index e38ff52cf453971e4da618256bf09d7a8e2262ed..69cd7be4f8110e80219421339682585e92ed4a85 100644 (file)
@@ -43,12 +43,3 @@ pub mod display;
 pub mod gps;
 pub mod fmt;
 pub mod time;
-
-use core::panic::PanicInfo;
-
-#[inline(never)]
-#[panic_handler]
-fn panic(_info: &PanicInfo) -> ! {
-    loop {
-    }
-}