Fix naming of libc that was mangled by recent module changes

It doesn't appear that rustc makes use of these strings so it didn't actually
break anything yet.
This commit is contained in:
Brian Anderson
2011-05-13 13:51:13 -04:00
parent 8a8f68aa75
commit c124404d0e
3 changed files with 5 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ import _vec::vbuf;
// FIXME Somehow merge stuff duplicated here and macosx_os.rs. Made difficult
// by https://github.com/graydon/rust/issues#issue/268
native mod libc = "libc::so.6" {
native mod libc = "libc.so.6" {
fn open(sbuf s, int flags, uint mode) -> int;
fn read(int fd, vbuf buf, uint count) -> int;