Skip to content

Commit

Permalink
*makefile: explicitly compile in C99 (addresses #10)
Browse files Browse the repository at this point in the history
  • Loading branch information
faelys committed Oct 14, 2015
1 parent 5c410ef commit b27839f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BSDmakefile
Expand Up @@ -16,7 +16,7 @@

DEPDIR=depends
ALLDEPS=$(DEPDIR)/all
CFLAGS=-c -g -O3 -Wall -Werror -fPIC
CFLAGS=-c -g -O3 -Wall -Werror -std=c99 -fPIC
LDFLAGS=-g -O3 -Wall -Werror
CC=cc

Expand Down
2 changes: 1 addition & 1 deletion GNUmakefile
Expand Up @@ -15,7 +15,7 @@
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

DEPDIR=depends
CFLAGS=-c -g -O3 -Wall -Werror -fPIC
CFLAGS=-c -g -O3 -Wall -Werror -std=c99 -fPIC
LDFLAGS=-g -O3 -Wall -Werror
CC=gcc

Expand Down

0 comments on commit b27839f

Please sign in to comment.