From b41df7f83792799f1a9662b83008ea6f64dc73e1 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Tue, 16 Apr 2019 13:51:47 -0700 Subject: Alpine's fortify-headers still needs __extension__ --- config.def.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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", -- cgit v1.2.3