about summary refs log tree commit diff
path: root/library/std/src/sys/wasm/args.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/sys/wasm/args.rs')
-rw-r--r--library/std/src/sys/wasm/args.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/library/std/src/sys/wasm/args.rs b/library/std/src/sys/wasm/args.rs
index 3b6557ae325..987585af2d5 100644
--- a/library/std/src/sys/wasm/args.rs
+++ b/library/std/src/sys/wasm/args.rs
@@ -6,8 +6,6 @@ pub unsafe fn init(_argc: isize, _argv: *const *const u8) {
     // On wasm these should always be null, so there's nothing for us to do here
 }
 
-pub unsafe fn cleanup() {}
-
 pub fn args() -> Args {
     Args { iter: Vec::new().into_iter(), _dont_send_or_sync_me: PhantomData }
 }