Skip to content

Commit

Permalink
Make a huge leap and jump to C99.
Browse files Browse the repository at this point in the history
  • Loading branch information
Subsentient committed Jun 6, 2015
1 parent b4de531 commit a2d322a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildepoch.sh
Expand Up @@ -134,7 +134,7 @@ if [ "$#" != "0" ]; then
fi

if [ "$NEED_EMPTY_CFLAGS" = "0" ]; then
CFLAGS=$CFLAGS" -std=gnu89 -pedantic -Wall -g -O0 -fstack-protector"
CFLAGS=$CFLAGS" -std=gnu99 -pedantic -Wall -g -O0 -fstack-protector"
fi

if [ "$LDFLAGS" = "" ]; then
Expand Down

1 comment on commit a2d322a

@Subsentient
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I started Epoch with C89, because I genuinely like C89. It feels a lot more compacted, and the standard document draft is a lot prettier to read than C99, but with other projects I'm starting to enjoy C99 features, so I think it's suitable to now compile Epoch as C99.

Please sign in to comment.