summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2014-11-30 08:24:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-12-01 19:00:16 (GMT)
commit316e53e68c7c4d89876524f7f010685ebfe7be1e (patch)
tree919750cb4945e50fa490f3bf2fa1a3e6b5f88f4a /cache.h
parent31e26ebcb512ad234d9725120fb4f5670ff75625 (diff)
downloadgit-316e53e68c7c4d89876524f7f010685ebfe7be1e.zip
git-316e53e68c7c4d89876524f7f010685ebfe7be1e.tar.gz
git-316e53e68c7c4d89876524f7f010685ebfe7be1e.tar.bz2
wrapper.c: wrapper to open a file, fprintf then close
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cache.h b/cache.h
index 9dc6ae0..43c2e52 100644
--- a/cache.h
+++ b/cache.h
@@ -1499,6 +1499,8 @@ static inline ssize_t write_str_in_full(int fd, const char *str)
{
return write_in_full(fd, str, strlen(str));
}
+__attribute__((format (printf, 3, 4)))
+extern int write_file(const char *path, int fatal, const char *fmt, ...);
/* pager.c */
extern void setup_pager(void);