diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-08-29 13:02:35 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-29 14:28:41 -0700 |
commit | 28f5c70b859e02e6b688bf35605678680c08045b (patch) | |
tree | 1c8c600ac56b2957891db6e8d3b384e31031f535 | |
parent | 104ff34a742672b360b1da2b7d7668a14da551c2 (diff) | |
download | git-28f5c70b859e02e6b688bf35605678680c08045b.tar.gz |
Remove uneeded #include
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | peek-remote.c | 1 | ||||
-rw-r--r-- | receive-pack.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/peek-remote.c b/peek-remote.c index 2b30980b04..87f1543fec 100644 --- a/peek-remote.c +++ b/peek-remote.c @@ -1,7 +1,6 @@ #include "cache.h" #include "refs.h" #include "pkt-line.h" -#include <sys/wait.h> static const char peek_remote_usage[] = "git-peek-remote [--exec=upload-pack] [host:]directory"; diff --git a/receive-pack.c b/receive-pack.c index 201531626c..78f75da5ca 100644 --- a/receive-pack.c +++ b/receive-pack.c @@ -2,7 +2,6 @@ #include "refs.h" #include "pkt-line.h" #include "run-command.h" -#include <sys/wait.h> static const char receive_pack_usage[] = "git-receive-pack <git-dir>"; |