From: Andreas Gal Date: Wed, 27 Apr 2005 20:46:36 +0000 (-0700) Subject: [PATCH] Fix up include dependency X-Git-Tag: v0.99~722 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=ec8f81160d605505f9117461916e7f69f151f2d2;p=git.git [PATCH] Fix up include dependency This makes rsh.c compile on Darwin/MacOSX (and might possibly help on some Linux distributions too). sys/socket.h needs sys/types.h Signed-off-by: Andreas Gal Signed-off-by: Linus Torvalds --- diff --git a/rsh.c b/rsh.c index 4d6a90bf..af2f47b1 100644 --- a/rsh.c +++ b/rsh.c @@ -1,6 +1,7 @@ #include "rsh.h" #include +#include #include #include "cache.h"