diff options
author | TBK <tbk@jjtc.eu> | 2020-02-26 00:24:39 +0100 |
---|---|---|
committer | Tomáš Mráz <t8m@users.noreply.github.com> | 2020-02-26 08:16:18 +0100 |
commit | 5956cf525bfb53ed0c5cade3b58f18fde4f85c42 (patch) | |
tree | 797b3ef5e01ac77e186b3906501339b094dbfe7e /libpamc/libpamc.h | |
parent | 8bd03a7dd02399cca16a4593018ab6e8d03a2ff9 (diff) | |
download | pam-5956cf525bfb53ed0c5cade3b58f18fde4f85c42.tar.gz pam-5956cf525bfb53ed0c5cade3b58f18fde4f85c42.tar.bz2 pam-5956cf525bfb53ed0c5cade3b58f18fde4f85c42.zip |
libpamc: Use ISO C99 uintX_t types instead of u_intX_t
u_intX_t is a glibcism this fixes the issue of compiling against musl libc.
Diffstat (limited to 'libpamc/libpamc.h')
-rw-r--r-- | libpamc/libpamc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpamc/libpamc.h b/libpamc/libpamc.h index 93c833c6..a22f52ea 100644 --- a/libpamc/libpamc.h +++ b/libpamc/libpamc.h @@ -16,6 +16,7 @@ #include <sys/types.h> #include <dirent.h> #include <sys/wait.h> +#include <stdint.h> #include <stdlib.h> #include <errno.h> #include <ctype.h> |