Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2012-07-21 23:33:05 +0200
committerArthur de Jong <arthur@arthurdejong.org>2012-07-21 23:33:05 +0200
commit2fa176998922beb813560210fb7ce80dccec5a1b (patch)
tree48a03bcc4da143b1ddee706d8b7fc964e5dc9fc6
parentc32802a605c0332e7083f6e71347d4d0649acbd0 (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.h2
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"