summaryrefslogtreecommitdiff
path: root/include/git/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/git/common.h')
-rw-r--r--include/git/common.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/git/common.h b/include/git/common.h
index 98822557c..5841342a0 100644
--- a/include/git/common.h
+++ b/include/git/common.h
@@ -43,13 +43,6 @@
# define GIT_EXTERN(type) type
#endif
-/** Declare a function never returns to the caller. */
-#ifdef __GNUC__
-# define GIT_NORETURN __attribute__((__noreturn__))
-#else
-# define GIT_NORETURN /* empty */
-#endif
-
/** Declare a function's takes printf style arguments. */
#ifdef __GNUC__
# define GIT_FORMAT_PRINTF(a,b) __attribute__((format (printf, a, b)))