Skip to content

Commit

Permalink
Also delete extern crate unwind
Browse files Browse the repository at this point in the history
  • Loading branch information
saethlin committed May 15, 2024
1 parent cc25bc5 commit 94f7460
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/beneath-std.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ in the same format as C (aside from the exact integer types being used):
#![allow(internal_features)]
#![no_std]

// Necessary for `panic = "unwind"` builds on some platforms.
#![feature(panic_unwind)]
extern crate unwind;

use core::panic::PanicInfo;

// Entry point for this program.
Expand Down Expand Up @@ -53,10 +49,6 @@ compiler's name mangling too:
#![no_std]
#![no_main]

// Necessary for `panic = "unwind"` builds on some platforms.
#![feature(panic_unwind)]
extern crate unwind;

use core::ffi::{c_char, c_int};
use core::panic::PanicInfo;

Expand Down

0 comments on commit 94f7460

Please sign in to comment.