summaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
index 8d1e89064..98109ae3a 100644
--- a/src/common.h
+++ b/src/common.h
@@ -17,6 +17,11 @@
# define GIT_INLINE(type) static inline type
#endif
+/** Support for gcc/clang __has_builtin intrinsic */
+#ifndef __has_builtin
+# define __has_builtin(x) 0
+#endif
+
#include <assert.h>
#include <errno.h>
#include <limits.h>