about summary refs log tree commit diff
path: root/library/std/src/sys/unix/mod.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-07-19 10:10:08 +0000
committerbors <bors@rust-lang.org>2021-07-19 10:10:08 +0000
commit8df945c4717ffaf923b57bf30c473df6fc98bc85 (patch)
tree8929ee5e23a7bd91146213570268566f37deb884 /library/std/src/sys/unix/mod.rs
parent83f08223a90b71f59e5dc5f38e384a49a76c8452 (diff)
parent6cb69ea790ad635acb3a8d4826e03ac29ca10351 (diff)
downloadrust-8df945c4717ffaf923b57bf30c473df6fc98bc85.tar.gz
rust-8df945c4717ffaf923b57bf30c473df6fc98bc85.zip
Auto merge of #87269 - GuillaumeGomez:rollup-qukedv0, r=GuillaumeGomez
Rollup of 8 pull requests

Successful merges:

 - #86230 (Add --nocapture option to rustdoc)
 - #87210 (Rustdoc accessibility: make the sidebar headers actual headers)
 - #87227 (Move asm! and global_asm! to core::arch)
 - #87236 (Simplify command-line argument initialization on unix)
 - #87251 (Fix "item info" width)
 - #87256 (Extend HIR-based WF checking to associated type defaults)
 - #87259 (triagebot shortcut config)
 - #87268 (Don't create references to uninitialized data in `List::from_arena`)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'library/std/src/sys/unix/mod.rs')
-rw-r--r--library/std/src/sys/unix/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/std/src/sys/unix/mod.rs b/library/std/src/sys/unix/mod.rs
index 2da71b2a448..9e553ec7682 100644
--- a/library/std/src/sys/unix/mod.rs
+++ b/library/std/src/sys/unix/mod.rs
@@ -123,7 +123,6 @@ pub unsafe fn init(argc: isize, argv: *const *const u8) {
 // SAFETY: must be called only once during runtime cleanup.
 // NOTE: this is not guaranteed to run, for example when the program aborts.
 pub unsafe fn cleanup() {
-    args::cleanup();
     stack_overflow::cleanup();
 }