Tell the compiler to be C99 compliant, enable all warnings.

Signed-off-by: Lukas Fleischer <info@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2011-04-27 19:22:09 +02:00
parent 5fa942b4cf
commit 8c6c487b24
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ CC = gcc
PREFIX = /usr/local
CFLAGS = -DFAKE_STAT -DFAKE_INTERNAL_CALLS -fPIC
CFLAGS = -std=gnu99 -Wall -DFAKE_STAT -DFAKE_INTERNAL_CALLS -fPIC
LDFLAGS = -shared -ldl -lm -lpthread
SRC = faketime.c

View File

@@ -1,6 +1,6 @@
CC = gcc
CFLAGS = -DFAKE_STAT
CFLAGS = -std=gnu99 -Wall -DFAKE_STAT
LDFLAGS = -lrt
SRC = timetest.c