summaryrefslogtreecommitdiff
path: root/include/fortify-headers.h
diff options
context:
space:
mode:
authorTrutz Behn2015-06-03 19:27:01 +0200
committersin2015-06-03 18:55:35 +0100
commit1cd5461a5375207602f2cbdfd9a50a9b751cb7c8 (patch)
treef83f8a0ccb05715aadef4d2bcc770c93ea0b97ec /include/fortify-headers.h
parenta9ee1d2743acb0b2903db87c0a241c0a569cfc4e (diff)
Use namespace-safe macro, param and variable names
Diffstat (limited to '')
-rw-r--r--include/fortify-headers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fortify-headers.h b/include/fortify-headers.h
index fcb862d..288a973 100644
--- a/include/fortify-headers.h
+++ b/include/fortify-headers.h
@@ -18,7 +18,7 @@
18 18
19#define _FORTIFY_STR(s) #s 19#define _FORTIFY_STR(s) #s
20#define _FORTIFY_ORIG(p,fn) __typeof__(fn) __orig_##fn __asm__(_FORTIFY_STR(p) #fn) 20#define _FORTIFY_ORIG(p,fn) __typeof__(fn) __orig_##fn __asm__(_FORTIFY_STR(p) #fn)
21#define fortify_fn(fn) _FORTIFY_ORIG(__USER_LABEL_PREFIX__,fn); \ 21#define _FORTIFY_FN(fn) _FORTIFY_ORIG(__USER_LABEL_PREFIX__,fn); \
22 extern __inline __attribute__((__always_inline__,__gnu_inline__,__artificial__)) 22 extern __inline __attribute__((__always_inline__,__gnu_inline__,__artificial__))
23 23
24#endif 24#endif