summaryrefslogtreecommitdiff
path: root/include/fortify-headers.h
diff options
context:
space:
mode:
authorjvoisin2025-12-30 11:32:19 +0100
committerJulien Voisin2025-12-30 11:34:48 +0100
commitc4c5fd41124f38a5afee02b8f604ddc21d3b199a (patch)
tree77e2be706743d954bfcaa28163751fcd2f4cd27e /include/fortify-headers.h
parent4797899b24d35873211cf0cd1a2a373e2db3c528 (diff)
Change __access into __fortify_access to fix potential conflicts
Diffstat (limited to 'include/fortify-headers.h')
-rw-r--r--include/fortify-headers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fortify-headers.h b/include/fortify-headers.h
index bdf10f6..b0bee87 100644
--- a/include/fortify-headers.h
+++ b/include/fortify-headers.h
@@ -62,9 +62,9 @@
62#if defined __has_attribute 62#if defined __has_attribute
63 63
64#if __has_attribute (access) 64#if __has_attribute (access)
65#define __access(...) __attribute__ ((access (__VA_ARGS__))) 65#define __fortify_access(...) __attribute__ ((access (__VA_ARGS__)))
66#else 66#else
67#define __access(...) 67#define __fortify_access(...)
68#endif 68#endif
69 69
70#if __has_attribute (format) 70#if __has_attribute (format)