diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2012-07-23 23:52:36 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2012-07-23 23:52:36 +0200 |
commit | 8c3489da26df9750cbfe4ad195a7d925711556b5 (patch) | |
tree | 0e7af536aaa7e77c7a90c646245c53c9fb198359 /nslcd/protocol.c | |
parent | 2fa176998922beb813560210fb7ce80dccec5a1b (diff) |
ensure that all places where stdint.h is included it is surrounded by #ifdefs
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1731 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nslcd/protocol.c')
-rw-r--r-- | nslcd/protocol.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nslcd/protocol.c b/nslcd/protocol.c index 9536a8e..f5dfe5a 100644 --- a/nslcd/protocol.c +++ b/nslcd/protocol.c @@ -28,7 +28,9 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#ifdef HAVE_STDINT_H #include <stdint.h> +#endif /* HAVE_STDINT_H */ #include "common.h" #include "log.h" |