init crate

pull/1/head
HTG-YT 2021-08-06 22:54:24 +08:00
parent 25b9000410
commit 7f194b3559
3 changed files with 23 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
# dot directories
.idea
# lock files
Cargo.lock

7
Cargo.toml Normal file
View File

@ -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"

11
src/lib.rs Normal file
View File

@ -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]