Rename "c-stack-cdecl" ABI to "cdecl"

This commit is contained in:
Brian Anderson
2011-11-09 18:44:12 -08:00
parent 2b9b6e3521
commit b7ab28b50f
23 changed files with 25 additions and 27 deletions

View File

@@ -6,7 +6,7 @@ TODO: Restructure and document
// FIXME Somehow merge stuff duplicated here and macosx_os.rs. Made difficult
// by https://github.com/graydon/rust/issues#issue/268
native "c-stack-cdecl" mod libc = "" {
native "cdecl" mod libc = "" {
fn read(fd: int, buf: *u8, count: uint) -> int;
fn write(fd: int, buf: *u8, count: uint) -> int;
fn fread(buf: *u8, size: uint, n: uint, f: libc::FILE) -> uint;
@@ -86,7 +86,7 @@ fn waitpid(pid: int) -> int {
ret status;
}
native "c-stack-cdecl" mod rustrt {
native "cdecl" mod rustrt {
fn rust_getcwd() -> str;
}