X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=strbuf.c;h=e33d06b87c978ad7484c9d6bf972681c3d6cdeb0;hb=a2f8028d3d661b314d5a784764f2f5f9e4c2dde0;hp=9d9d8bed915483abbc2ebb340e0881ae4e296bd4;hpb=c1067050ce58b5b39f528fe634732da858664603;p=git.git diff --git a/strbuf.c b/strbuf.c index 9d9d8bed9..e33d06b87 100644 --- a/strbuf.c +++ b/strbuf.c @@ -1,7 +1,5 @@ -#include -#include -#include "strbuf.h" #include "cache.h" +#include "strbuf.h" void strbuf_init(struct strbuf *sb) { sb->buf = NULL; @@ -41,4 +39,3 @@ void read_line(struct strbuf *sb, FILE *fp, int term) { sb->eof = 1; strbuf_end(sb); } -