summaryrefslogtreecommitdiffstats
path: root/lib/csu
diff options
context:
space:
mode:
authorkettenis <kettenis@openbsd.org>2016-09-26 15:43:26 +0000
committerkettenis <kettenis@openbsd.org>2016-09-26 15:43:26 +0000
commitd3eddb10b4d2ee9faaf16b7ee3213471fd72ac97 (patch)
tree8b2610955f36d9ea616b2abe20f67ea3d3f66f3d /lib/csu
parentFix compilation warning by using the correct cast/format. (diff)
downloadwireguard-openbsd-d3eddb10b4d2ee9faaf16b7ee3213471fd72ac97.tar.xz
wireguard-openbsd-d3eddb10b4d2ee9faaf16b7ee3213471fd72ac97.zip
Now that vax has been removed, nothing defined MD_NO_CLEANUP anymore.
ok guenther@
Diffstat (limited to 'lib/csu')
-rw-r--r--lib/csu/crt0.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/csu/crt0.c b/lib/csu/crt0.c
index 64ec4dbdef0..e6e68da3b0d 100644
--- a/lib/csu/crt0.c
+++ b/lib/csu/crt0.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: crt0.c,v 1.7 2016/05/07 19:30:53 guenther Exp $ */
+/* $OpenBSD: crt0.c,v 1.8 2016/09/26 15:43:26 kettenis Exp $ */
/*
* Copyright (c) 1995 Christopher G. Demetriou
@@ -77,11 +77,7 @@ MD_START(MD_START_ARGS)
MD_START_SETUP
#endif
-#ifndef MD_NO_CLEANUP
environp = _csu_finish(argv, envp, cleanup);
-#else
- environp = _csu_finish(argv, envp, NULL);
-#endif
#ifdef MCRT0
atexit(_mcleanup);