diff options
| author | bors <bors@rust-lang.org> | 2013-10-14 07:26:47 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-10-14 07:26:47 -0700 |
| commit | c8e77d5586aed50821e0b9361b2e24c96ade816c (patch) | |
| tree | fe5ccc6b0b4ccbbd70cf48925e22cccf3d3c0a72 /src/libstd/rt | |
| parent | b571039021e031888cea4e0b53d8f9b4e81c6d31 (diff) | |
| parent | 309ab958e6cf78caf188f6dcbf9ce35d9ba62468 (diff) | |
| download | rust-c8e77d5586aed50821e0b9361b2e24c96ade816c.tar.gz rust-c8e77d5586aed50821e0b9361b2e24c96ade816c.zip | |
auto merge of #9606 : steveklabnik/rust/abi_removal, r=alexcrichton
They've been replaced by putting the name on the extern block.
#[abi = "foo"]
goes to
extern "foo" { }
Closes #9483.
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/thread_local_storage.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/rt/thread_local_storage.rs b/src/libstd/rt/thread_local_storage.rs index 26eabca2d9d..cd89d09ffc0 100644 --- a/src/libstd/rt/thread_local_storage.rs +++ b/src/libstd/rt/thread_local_storage.rs @@ -84,7 +84,6 @@ pub unsafe fn get(key: Key) -> *mut c_void { } #[cfg(windows, target_arch = "x86")] -#[abi = "stdcall"] extern "stdcall" { fn TlsAlloc() -> DWORD; fn TlsSetValue(dwTlsIndex: DWORD, lpTlsvalue: LPVOID) -> BOOL; |
