diff options
author | Ren Kararou <[email protected]> | 2023-05-18 15:00:56 -0400 |
---|---|---|
committer | Ren Kararou <[email protected]> | 2023-05-18 15:00:56 -0400 |
commit | 38a04660edcb595429a7a207fcffc903d846542a (patch) | |
tree | 45e592bc3840d21fe47a277942daeae083d4aeb8 /usr/src/mei/true | |
download | k2spice-38a04660edcb595429a7a207fcffc903d846542a.tar.gz k2spice-38a04660edcb595429a7a207fcffc903d846542a.tar.bz2 k2spice-38a04660edcb595429a7a207fcffc903d846542a.zip |
The Initial Commit
Diffstat (limited to 'usr/src/mei/true')
-rw-r--r-- | usr/src/mei/true/Cargo.toml | 12 | ||||
-rw-r--r-- | usr/src/mei/true/src/main.rs | 31 |
2 files changed, 43 insertions, 0 deletions
diff --git a/usr/src/mei/true/Cargo.toml b/usr/src/mei/true/Cargo.toml new file mode 100644 index 0000000..644bc0d --- /dev/null +++ b/usr/src/mei/true/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "truecmd" +version = "0.0.1" +edition = "2021" + +[[bin]] +name = "true" +path = "src/main.rs" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/usr/src/mei/true/src/main.rs b/usr/src/mei/true/src/main.rs new file mode 100644 index 0000000..6f58f4e --- /dev/null +++ b/usr/src/mei/true/src/main.rs @@ -0,0 +1,31 @@ +/* + * CDDL HEADER START + * + * The contents of this file are subject to the terms of the + * Common Development and Distribution License, Version 1.0 only + * (the "License"). You may not use this file except in compliance + * with the License. + * + * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE + * or http://www.opensolaris.org/os/licensing. + * See the License for the specific language governing permissions + * and limitations under the License. + * + * When distributing Covered Code, include this CDDL HEADER in each + * file and include the License file at usr/src/OPENSOLARIS.LICENSE. + * If applicable, add the following below this CDDL HEADER, with the + * fields enclosed by brackets "[]" replaced with your own identifying + * information: Portions Copyright [yyyy] [name of copyright owner] + * + * CDDL HEADER END + */ + +/* + * Copyright 2023 Ren Kararou All rights reserved. + * Use is subject to license terms. + */ + + +fn main() { + return; +} |