Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
t3404: use configured shell instead of /bin/sh
[gitweb.git]
/
git-compat-util.h
diff --git
a/git-compat-util.h
b/git-compat-util.h
index 46d5e93c729ec8625eda0649071c887cbcbe8015..2a40703c851d7011723588dd7643dc034db49c31 100644
(file)
--- a/
git-compat-util.h
+++ b/
git-compat-util.h
@@
-431,4
+431,10
@@
static inline int strtol_i(char const *s, int base, int *result)
return 0;
}
+#ifdef INTERNAL_QSORT
+void git_qsort(void *base, size_t nmemb, size_t size,
+ int(*compar)(const void *, const void *));
+#define qsort git_qsort
+#endif
+
#endif