diff options
author | 2016-09-26 15:43:26 +0000 | |
---|---|---|
committer | 2016-09-26 15:43:26 +0000 | |
commit | d3eddb10b4d2ee9faaf16b7ee3213471fd72ac97 (patch) | |
tree | 8b2610955f36d9ea616b2abe20f67ea3d3f66f3d /lib/csu | |
parent | Fix compilation warning by using the correct cast/format. (diff) | |
download | wireguard-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.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); |