diff options
| author | Junio C Hamano <gitster@pobox.com> | 2020-05-01 13:39:56 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2020-05-01 13:39:56 -0700 |
| commit | bf04590ecdf87d0ad034f7fbff36a10eb20637cb (patch) | |
| tree | 0eec97b7ca3c86fffe3d510ed124789d09c77a5a /compat/regex/regex.c | |
| parent | Merge branch 'mt/doc-worktree-ref' (diff) | |
| parent | progress.c: silence cgcc suggestion about internal linkage (diff) | |
| download | git-bf04590ecdf87d0ad034f7fbff36a10eb20637cb.tar.gz git-bf04590ecdf87d0ad034f7fbff36a10eb20637cb.zip | |
Merge branch 'dd/sparse-fixes'
Compilation fix.
* dd/sparse-fixes:
progress.c: silence cgcc suggestion about internal linkage
graph.c: limit linkage of internal variable
compat/regex: move stdlib.h up in inclusion chain
test-parse-pathspec-file.c: s/0/NULL/ for pointer type
Diffstat (limited to 'compat/regex/regex.c')
| -rw-r--r-- | compat/regex/regex.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compat/regex/regex.c b/compat/regex/regex.c index f3e03a9eab..e6f4a5d177 100644 --- a/compat/regex/regex.c +++ b/compat/regex/regex.c @@ -60,6 +60,7 @@ #undefs RE_DUP_MAX and sets it to the right value. */ #include <limits.h> #include <stdint.h> +#include <stdlib.h> #ifdef GAWK #undef alloca |
