diff options
author | Erik Faye-Lund <kusmabite@gmail.com> | 2011-01-10 23:00:49 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-01-19 17:27:22 +0100 |
commit | b312b4123b053898a583aa6e8da1b26ea828105a (patch) | |
tree | a6cd9a57441df25a7d829b5f8090274555b4fb84 /exec_cmd.c | |
parent | Merge branch 'jn/gitweb-no-logo' into maint (diff) | |
download | git-b312b4123b053898a583aa6e8da1b26ea828105a.tar.xz git-b312b4123b053898a583aa6e8da1b26ea828105a.zip |
exec_cmd: remove unused extern
This definition was added by commit 77cb17e9, but it's left unused since
commit 511707d. Remove the left-over definition.
Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'exec_cmd.c')
-rw-r--r-- | exec_cmd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/exec_cmd.c b/exec_cmd.c index bf225706ee..38545e8bfd 100644 --- a/exec_cmd.c +++ b/exec_cmd.c @@ -3,7 +3,6 @@ #include "quote.h" #define MAX_ARGS 32 -extern char **environ; static const char *argv_exec_path; static const char *argv0_path; |