We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 106040f + b6ab349 commit dd7d0d0Copy full SHA for dd7d0d0
2 files changed
Makefile
@@ -1042,6 +1042,7 @@ ifeq ($(uname_S),HP-UX)
1042
NO_UNSETENV = YesPlease
1043
NO_HSTRERROR = YesPlease
1044
NO_SYS_SELECT_H = YesPlease
1045
+ NO_FNMATCH_CASEFOLD = YesPlease
1046
SNPRINTF_RETURNS_BOGUS = YesPlease
1047
NO_NSEC = YesPlease
1048
ifeq ($(uname_R),B.11.00)
git-compat-util.h
@@ -214,7 +214,10 @@ extern char *gitbasename(char *);
214
#define is_dir_sep(c) ((c) == '/')
215
#endif
216
217
-#ifdef __GNUC__
+#if __HP_cc >= 61000
218
+#define NORETURN __attribute__((noreturn))
219
+#define NORETURN_PTR
220
+#elif defined(__GNUC__)
221
#define NORETURN __attribute__((__noreturn__))
222
#define NORETURN_PTR __attribute__((__noreturn__))
223
#elif defined(_MSC_VER)
0 commit comments