Allow declarations after statements

We officially allow C99, so don't forbid this C99 feature.
This commit is contained in:
Gilles Peskine 2019-06-25 18:52:06 +02:00
parent 66b7edb108
commit c2d56a4446
4 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@
# Also see "include/mbedtls/config.h"
CFLAGS ?= -O2
WARNING_CFLAGS ?= -Wall -W -Wdeclaration-after-statement
WARNING_CFLAGS ?= -Wall -W
LDFLAGS ?=
LOCAL_CFLAGS = $(WARNING_CFLAGS) -I../include -D_FILE_OFFSET_BITS=64