From cdc6209ff48cac5714df7b958e9cd2063816caad Mon Sep 17 00:00:00 2001 From: Paul Sajna <paulsajna@gmail.com> Date: Wed, 21 Mar 2018 20:12:22 -0700 Subject: [PATCH] fix comment --- src/stdlib/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/stdlib/src/lib.rs b/src/stdlib/src/lib.rs index acc68d08d..9c948d677 100644 --- a/src/stdlib/src/lib.rs +++ b/src/stdlib/src/lib.rs @@ -1,8 +1,9 @@ +//! stdlib implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/stdlib.h.html + #![no_std] #![feature(core_intrinsics)] #![feature(global_allocator)] -///! stdlib implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/stdlib.h.html extern crate ctype; extern crate errno; extern crate platform; -- GitLab