From b2f1c72cc79cc6f31d2ebad5630d666c3327d254 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Wed, 4 Feb 2015 17:01:38 +0100 Subject: [PATCH] Remove _WANT_ENVIRON remnants. --- libc/unistd/execv.cpp | 1 - libc/unistd/execvp.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/libc/unistd/execv.cpp b/libc/unistd/execv.cpp index 8e472c14..a9eec88d 100644 --- a/libc/unistd/execv.cpp +++ b/libc/unistd/execv.cpp @@ -22,7 +22,6 @@ *******************************************************************************/ -#define _WANT_ENVIRON #include extern "C" int execv(const char* pathname, char* const* argv) diff --git a/libc/unistd/execvp.cpp b/libc/unistd/execvp.cpp index 6ff0c9c7..583ceaae 100644 --- a/libc/unistd/execvp.cpp +++ b/libc/unistd/execvp.cpp @@ -22,7 +22,6 @@ *******************************************************************************/ -#define _WANT_ENVIRON #include extern "C" int execvp(const char* filename, char* const* argv)