diff options
author | Peter Hagervall <hager@cs.umu.se> | 2007-07-15 01:14:45 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-07-14 22:44:09 -0700 |
commit | baffc0e7708de1655665d150081e8880501736fe (patch) | |
tree | 267d9bfd87967c891fc25e8b5dcf1376ee8c816c /builtin-checkout-index.c | |
parent | 46cf98baa5a1d74a9d00dc1092b29e4af93e8615 (diff) | |
download | git-baffc0e7708de1655665d150081e8880501736fe.tar.gz |
Make every builtin-*.c file #include "builtin.h"
Make every builtin-*.c file #include "builtin.h".
Also takes care of some declaration/definition mismatches.
Signed-off-by: Peter Hagervall <hager@cs.umu.se>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-checkout-index.c')
-rw-r--r-- | builtin-checkout-index.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin-checkout-index.c b/builtin-checkout-index.c index 8460f97b66..75377b9cab 100644 --- a/builtin-checkout-index.c +++ b/builtin-checkout-index.c @@ -36,6 +36,7 @@ * of "-a" causing problems (not possible in the above example, * but get used to it in scripting!). */ +#include "builtin.h" #include "cache.h" #include "strbuf.h" #include "quote.h" |