aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-11-23 19:24:26 +0100
committerMattias Andrée <maandree@operamail.com>2013-11-23 19:24:30 +0100
commita4dda309ae93a2d233f705328babc911a286242c (patch)
tree3f58da589e90478b63419ce34e9c573cff1c4e82 /Makefile
parentm (diff)
downloadlibpassphrase-a4dda309ae93a2d233f705328babc911a286242c.tar.gz
libpassphrase-a4dda309ae93a2d233f705328babc911a286242c.tar.bz2
libpassphrase-a4dda309ae93a2d233f705328babc911a286242c.tar.xz
define xrealloc as a secure realloc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5259633..bd9b847 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,7 @@ OPTIONS =
OPTIMISE = -Os
CPPFLAGS = $(foreach D, $(OPTIONS), -D'$(D)=1')
-CFLAGS = -std=c90 -Wall -Wextra -fPIC
+CFLAGS = -std=c99 -Wall -Wextra -fPIC
LDFLAGS = -shared
CC_FLAGS = $(CPPFLAGS) $(CFLAGS) $(OPTIMISE)