summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDario Bartussek <[email protected]>2021-03-27 14:26:43 +0100
committerDario Bartussek <[email protected]>2021-03-27 14:26:43 +0100
commit50c52b5f220575f0c5127be623dd53a8c381f7fa (patch)
tree2e888ad5b5a3fcb39119f7bd303c51b759649d43 /src
parentBasic example for compiling Rust for the 3DS as elf (diff)
downloadrust_3ds-50c52b5f220575f0c5127be623dd53a8c381f7fa.tar.xz
rust_3ds-50c52b5f220575f0c5127be623dd53a8c381f7fa.zip
Updated main to actually produce a start function
Diffstat (limited to 'src')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 029937f..716751a 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -4,7 +4,7 @@
use core::panic::PanicInfo;
#[no_mangle]
-pub extern "C" fn pre_main() -> ! {
+pub extern "C" fn _start() -> ! {
loop {}
}