aboutsummaryrefslogtreecommitdiff
path: root/ctr-std/src/sys_common
diff options
context:
space:
mode:
authorpanicbit <[email protected]>2017-07-10 05:16:35 +0200
committerGitHub <[email protected]>2017-07-10 05:16:35 +0200
commitae25aa58451676a3a918a0dd3a11a002baeae700 (patch)
tree96dc47323b4ce6f57c5f7c3add0fd842bee426f9 /ctr-std/src/sys_common
parentAdd default allocator symbols (diff)
parentupdate collections module (diff)
downloadctru-rs-ae25aa58451676a3a918a0dd3a11a002baeae700.tar.xz
ctru-rs-ae25aa58451676a3a918a0dd3a11a002baeae700.zip
Merge pull request #1 from FenrirWolf/collections-update
Update collections module
Diffstat (limited to 'ctr-std/src/sys_common')
-rw-r--r--ctr-std/src/sys_common/mod.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/ctr-std/src/sys_common/mod.rs b/ctr-std/src/sys_common/mod.rs
index 936ff80..c6e81cc 100644
--- a/ctr-std/src/sys_common/mod.rs
+++ b/ctr-std/src/sys_common/mod.rs
@@ -76,10 +76,6 @@ pub fn at_exit<F: FnOnce() + Send + 'static>(f: F) -> Result<(), ()> {
if at_exit_imp::push(Box::new(f)) {Ok(())} else {Err(())}
}
-macro_rules! rtabort {
- ($($t:tt)*) => (::sys_common::util::abort(format_args!($($t)*)))
-}
-
// Computes (value*numer)/denom without overflow, as long as both
// (numer*denom) and the overall result fit into i64 (which is the case
// for our time conversions).