Fix pkt-line.h to compile with a non-GCC compiler

pkt-line.h uses GCC's __attribute__ extension but does not include
git-compat-util.h.  So it will not compile with a compiler that does
not support this extension.

Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Dennis Stosberg 2006-06-26 10:27:07 +02:00 committed by Junio C Hamano
parent e898081dfb
commit 07d68930c2
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#ifndef PKTLINE_H
#define PKTLINE_H

#include "git-compat-util.h"

/*
* Silly packetized line writing interface
*/