about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorStefan Plantikow <stefan.plantikow@googlemail.com>2011-12-22 12:54:55 +0100
committerStefan Plantikow <stefan.plantikow@googlemail.com>2011-12-31 03:45:17 +0100
commitd124c6eda29c4ba2f2a88b5e336e03ddbc12a2aa (patch)
treed3c195b33e9c228fb7734a35ae968d0e601e4fc9 /src/libstd
parente0cd06053a404b7e9c4efa8fc0ca77cc7154913c (diff)
downloadrust-d124c6eda29c4ba2f2a88b5e336e03ddbc12a2aa.tar.gz
rust-d124c6eda29c4ba2f2a88b5e336e03ddbc12a2aa.zip
removes std::mtypes
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/mtypes.rs64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/libstd/mtypes.rs b/src/libstd/mtypes.rs
deleted file mode 100644
index cddea420cc8..00000000000
--- a/src/libstd/mtypes.rs
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
-
-Module: mtypes
-
-Machine type equivalents of rust int, uint, float, and complex.
-
-Types useful for interop with C when writing bindings that exist
-for different types (float, f32, f64, ...; cf float.rs for an example)
-*/
-
-export m_int, m_uint, m_float;
-
-// PORT Change this when porting to a new architecture
-
-/*
-Type: m_int
-
-Machine type equivalent of an int
-*/
-#[cfg(target_arch="x86")]
-type m_int = i32;
-#[cfg(target_arch="x86_64")]
-type m_int = i64;
-
-// PORT Change this when porting to a new architecture
-
-/*
-Type: m_uint
-
-Machine type equivalent of a uint
-*/
-#[cfg(target_arch="x86")]
-type m_uint = u32;
-#[cfg(target_arch="x86_64")]
-type m_uint = u64;
-
-// PORT *must* match with "import m_float = fXX" in std::math per arch
-
-/*
-Type: m_float
-
-Machine type equivalent of a float
-*/
-type m_float = f64;
-
-// PORT  *must* match "import m_complex = ..." in std::complex per arch
-
-/*
-FIXME Type m_complex
-
-Machine type representing a complex value that uses floats for
-both the real and the imaginary part.
-*/
-// type m_complex = complex_c64::t;
-
-//
-// Local Variables:
-// mode: rust
-// fill-column: 78;
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
-//