Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-02-14 05:18:41 +0300
committerJunio C Hamano <gitster@pobox.com>2019-02-14 05:18:41 +0300
commit1db999ce8d369dbf20532f1b2ea8cbbcf6f2cc7b (patch)
tree2594969e363819ef50ad96ad999f352f35ea2a91 /compat
parentc73472a8deb9dc194d05747dda3061c6324750e4 (diff)
parent18a4f6be6b4cfc34de6f80c36ab3ef951a0f7164 (diff)
Merge branch 'nd/fileno-may-be-macro'
* nd/fileno-may-be-macro: git-compat-util: work around fileno(fp) that is a macro
Diffstat (limited to 'compat')
-rw-r--r--compat/fileno.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/compat/fileno.c b/compat/fileno.c
new file mode 100644
index 0000000000..7b105f4cd7
--- /dev/null
+++ b/compat/fileno.c
@@ -0,0 +1,7 @@
+#define COMPAT_CODE
+#include "../git-compat-util.h"
+
+int git_fileno(FILE *stream)
+{
+ return fileno(stream);
+}