diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-09-26 15:43:27 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-09-26 15:43:27 +0000 |
commit | 8be99a49a713b1a1e5baccb9a26fa3a0aa0b8057 (patch) | |
tree | 461e90d3f6386fafce8071370b3073156ba1d2a9 /lib | |
parent | 12f27d83adb1e944f84e96431ef21eb6a9147bf7 (diff) |
Now that vax has been removed, nothing defined MD_NO_CLEANUP anymore.
ok guenther@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/csu/crt0.c | 6 |
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); |