Moved victoriafalls to sys dir in rust.

This commit is contained in:
Drew Galbraith 2025-02-07 18:05:38 -08:00
parent 9452e6c705
commit c8f84ec352
10 changed files with 39 additions and 19 deletions

View file

@ -0,0 +1,11 @@
#![no_std]
#![no_main]
use mammoth::{define_entry, zion::z_err_t};
define_entry!();
#[no_mangle]
extern "C" fn main() -> z_err_t {
0
}