Browse Source

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 19 years ago committed by Junio C Hamano
parent
commit
07d68930c2
  1. 2
      pkt-line.h

2
pkt-line.h

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

#include "git-compat-util.h"

/*
* Silly packetized line writing interface
*/

Loading…
Cancel
Save