mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
07d68930c2
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>
15 lines
348 B
C
15 lines
348 B
C
#ifndef PKTLINE_H
|
|
#define PKTLINE_H
|
|
|
|
#include "git-compat-util.h"
|
|
|
|
/*
|
|
* Silly packetized line writing interface
|
|
*/
|
|
void packet_flush(int fd);
|
|
void packet_write(int fd, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
|
|
|
|
int packet_read_line(int fd, char *buffer, unsigned size);
|
|
ssize_t safe_write(int, const void *, ssize_t);
|
|
|
|
#endif
|