diff options
author | Michael Forney <mforney@mforney.org> | 2019-04-16 13:51:47 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-04-16 13:51:47 -0700 |
commit | b41df7f83792799f1a9662b83008ea6f64dc73e1 (patch) | |
tree | 0d805e5d4c7b265817a4e9500d3c5497d5b8db2c /config.def.h | |
parent | de004660726acb148bf0022706b7019ca560172d (diff) |
Alpine's fortify-headers still needs __extension__
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 9605c59..87b85ff 100644 --- a/config.def.h +++ b/config.def.h @@ -26,8 +26,9 @@ static char *preprocesscmd[] = { /* prevent glibc from using statement expressions for assert */ "-D", "__STRICT_ANSI__", - /* ignore attributes */ + /* ignore attributes and extension markers */ "-D", "__attribute__(x)=", + "-D", "__extension__=", /* alternate keywords */ "-D", "__alignof__=_Alignof", |