init crate
This commit is contained in:
parent
47ee4af50c
commit
c48c792f91
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# dot directories
|
||||||
|
.idea
|
||||||
|
|
||||||
|
# lock files
|
||||||
|
Cargo.lock
|
7
Cargo.toml
Normal file
7
Cargo.toml
Normal 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
11
src/lib.rs
Normal 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]
|
Loading…
Reference in a new issue