Removing unused wrapper to libc::close.

This commit is contained in:
Axel Viala 2014-06-07 00:43:45 +02:00 committed by Alex Crichton
parent d4dec4701a
commit 5915763106
1 changed files with 0 additions and 6 deletions

View File

@ -56,12 +56,6 @@ use libc::c_char;
#[cfg(windows)]
use str::OwnedStr;
/// Delegates to the libc close() function, returning the same return value.
pub fn close(fd: int) -> int {
unsafe {
libc::close(fd as c_int) as int
}
}
pub static TMPBUF_SZ : uint = 1000u;
static BUF_BYTES : uint = 2048u;