summaryrefslogtreecommitdiffstats
path: root/ldap/servers/plugins/acl/acl.h
diff options
context:
space:
mode:
Diffstat (limited to 'ldap/servers/plugins/acl/acl.h')
-rw-r--r--ldap/servers/plugins/acl/acl.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/ldap/servers/plugins/acl/acl.h b/ldap/servers/plugins/acl/acl.h
index f1153b21..bccf4c54 100644
--- a/ldap/servers/plugins/acl/acl.h
+++ b/ldap/servers/plugins/acl/acl.h
@@ -49,6 +49,22 @@
#ifndef _ACL_H_
#define _ACL_H_
+/* Required to get portable printf/scanf format macros */
+#ifdef HAVE_INTTYPES_H
+#include <inttypes.h>
+
+/* NSPR uses the print macros a bit differently than ANSI C. We
+ * need to use ll for a 64-bit integer, even when a long is 64-bit.
+ */
+#undef PRIu64
+#define PRIu64 "llu"
+#undef PRI64
+#define PRI64 "ll"
+
+#else
+#error Need to define portable format macros such as PRIu64
+#endif /* HAVE_INTTYPES_H */
+
#include <stdio.h>
#include <string.h>
#include <sys/types.h>