From 9c016734221778a8a6ec9b698bd6081f0d9ea3a5 Mon Sep 17 00:00:00 2001 From: jD91mZM2 <me@krake.one> Date: Sun, 1 Jul 2018 18:57:45 +0200 Subject: [PATCH] Use no_std in inttypes (whoops) --- src/inttypes/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/inttypes/src/lib.rs b/src/inttypes/src/lib.rs index 0ceb7bc5..ff2007a2 100644 --- a/src/inttypes/src/lib.rs +++ b/src/inttypes/src/lib.rs @@ -1,3 +1,5 @@ +#![no_std] + #[macro_use] extern crate stdlib; extern crate ctype; extern crate errno; -- GitLab