Commit Diff
- Commit:
c2417a8ec6a4fad60404fd1eb3a338f0f3fdaa58
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
- Message:
- portable: alpine: include stdlib.h Because musl is less forgiving about header-ordering, explicitly include this before stdio.h -- this won't affect existing files as the include guards elsewhere prevent this.
- Actions:
- Patch | Tree
--- include/got_compat2.h +++ include/got_compat2.h @@ -56,6 +56,7 @@ #include <fnmatch.h> #include <limits.h> +#include <stdlib.h> #include <stdio.h> #include <stdint.h>