diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-03-06 17:38:32 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-03-06 17:38:32 +0100 |
commit | 17ba5dc11c3d1db8be0fbe1ce54e9f9b75b1825d (patch) | |
tree | 8122ca756b74db73864292fb0f23471280b6fb40 /src/commit.c | |
parent | 39b0c8831248a12802840795b52484129a2147bf (diff) | |
download | apk-tools-17ba5dc11c3d1db8be0fbe1ce54e9f9b75b1825d.tar.gz apk-tools-17ba5dc11c3d1db8be0fbe1ce54e9f9b75b1825d.tar.bz2 apk-tools-17ba5dc11c3d1db8be0fbe1ce54e9f9b75b1825d.tar.xz apk-tools-17ba5dc11c3d1db8be0fbe1ce54e9f9b75b1825d.zip |
commit: include limits.h for PATH_MAX
this fixes build on ppc64le
Diffstat (limited to 'src/commit.c')
-rw-r--r-- | src/commit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/commit.c b/src/commit.c index 80b2c13..278af5e 100644 --- a/src/commit.c +++ b/src/commit.c @@ -9,6 +9,7 @@ * by the Free Software Foundation. See http://www.gnu.org/ for details. */ +#include <limits.h> #include <stdint.h> #include <unistd.h> #include "apk_defines.h" |