diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d58152a --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# dot directories +.idea + +# lock files +Cargo.lock \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..dc6a6d5 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "externc-libm" +version = "0.1.0" +edition = "2018" +authors = [ "The LibM Team of HaruxOS" ] +description = "A port of `libm` that has all the required no_mangle and extern-cs for linking." +license = "MPL-2.0" \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..61f4c11 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,11 @@ +// SPDX-License-Identifier: MPL-2.0 +/* + * File: src/lib.rs + * + * The externc-libm library. + * + * Author: HTG-YT + * Copyright (c) 2021 The Bootmgr Team of the HaruxOS Project + */ + +#![no_std] \ No newline at end of file