diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2012-07-21 23:33:05 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2012-07-21 23:33:05 +0200 |
commit | 2fa176998922beb813560210fb7ce80dccec5a1b (patch) | |
tree | 48a03bcc4da143b1ddee706d8b7fc964e5dc9fc6 | |
parent | c32802a605c0332e7083f6e71347d4d0649acbd0 (diff) |
only inlude stdint.h if we have it
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1725 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | nslcd/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nslcd/common.h b/nslcd/common.h index b641878..3ca77f8 100644 --- a/nslcd/common.h +++ b/nslcd/common.h @@ -26,7 +26,9 @@ #include <errno.h> #include <limits.h> +#ifdef HAVE_STDINT_H #include <stdint.h> +#endif /* HAVE_STDINT_H */ #include <sys/types.h> #include "nslcd.h" |