Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add memchr implemenation based on rust-memchr to libstd
  • Loading branch information
fhahn committed Dec 18, 2015
commit ca52c56e346a2a2bb042bec441b5058df3e3e289
2 changes: 2 additions & 0 deletions src/libstd/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@
#![feature(link_args)]
#![feature(linkage)]
#![feature(macro_reexport)]
#![feature(num_bits_bytes)]
#![feature(on_unimplemented)]
#![feature(oom)]
#![feature(optin_builtin_traits)]
Expand Down Expand Up @@ -429,6 +430,7 @@ pub mod path;
pub mod process;
pub mod sync;
pub mod time;
mod memchr;

#[macro_use]
#[path = "sys/common/mod.rs"] mod sys_common;
Expand Down
Loading