mirror of
https://github.com/Noratrieb/portability.git
synced 2026-01-14 15:55:04 +01:00
fixes
This commit is contained in:
parent
091e833acf
commit
dc6ef2108d
17 changed files with 221 additions and 39 deletions
|
|
@ -1,5 +1,6 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
#![windows_subsystem = "console"]
|
||||
|
||||
#[panic_handler]
|
||||
fn handle_panic(_: &core::panic::PanicInfo<'_>) -> ! {
|
||||
|
|
@ -7,4 +8,6 @@ fn handle_panic(_: &core::panic::PanicInfo<'_>) -> ! {
|
|||
}
|
||||
|
||||
#[no_mangle]
|
||||
pub fn main() {}
|
||||
pub extern "stdcall" fn my_main() -> u32 {
|
||||
42
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue