summaryrefslogtreecommitdiffstats
path: root/include/security/openpam_attr.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/security/openpam_attr.h')
-rw-r--r--include/security/openpam_attr.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/security/openpam_attr.h b/include/security/openpam_attr.h
new file mode 100644
index 0000000..aada5cc
--- /dev/null
+++ b/include/security/openpam_attr.h
@@ -0,0 +1,28 @@
+/*
+ * $Id: openpam_attr.h 405 2007-12-19 11:38:27Z des $
+ */
+
+#ifndef SECURITY_PAM_ATTRIBUTES_H_INCLUDED
+#define SECURITY_PAM_ATTRIBUTES_H_INCLUDED
+
+/* GCC attributes */
+#if defined(__GNUC__) && defined(__GNUC_MINOR__) && !defined(__STRICT_ANSI__)
+# define OPENPAM_GNUC_PREREQ(maj, min) \
+ ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
+#else
+# define OPENPAM_GNUC_PREREQ(maj, min) 0
+#endif
+
+#if OPENPAM_GNUC_PREREQ(2,5)
+# define OPENPAM_FORMAT(params) __attribute__((__format__ params))
+#else
+# define OPENPAM_FORMAT(params)
+#endif
+
+#if OPENPAM_GNUC_PREREQ(3,3)
+# define OPENPAM_NONNULL(params) __attribute__((__nonnull__ params))
+#else
+# define OPENPAM_NONNULL(params)
+#endif
+
+#endif /* !SECURITY_PAM_ATTRIBUTES_H_INCLUDED */
OpenPOWER on IntegriCloud