auto merge of #12957 : lkuper/rust/docsprint, r=alexcrichton

This commit is contained in:
bors 2014-03-17 08:01:56 -07:00
commit 79203b522b

View File

@ -1376,9 +1376,8 @@ pub mod raw {
#[lang="strdup_uniq"]
#[cfg(not(test))]
#[allow(missing_doc)]
#[inline]
pub unsafe fn strdup_uniq(ptr: *u8, len: uint) -> ~str {
unsafe fn strdup_uniq(ptr: *u8, len: uint) -> ~str {
from_buf_len(ptr, len)
}