Skip to content

Commit

Permalink
GCC: Use C99 mode
Browse files Browse the repository at this point in the history
  • Loading branch information
yantarou committed Mar 14, 2021
1 parent 58327a7 commit ec2b045
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file added dnsflood
Binary file not shown.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ TARBALL = dnsflood.tar.gz
all : $(TARGET)

$(TARGET) : $(SOURCE)
gcc -o $(TARGET) -g -DDEBUG $(SOURCE)
gcc -std=c99 -o $(TARGET) -g -DDEBUG $(SOURCE)

tarball :
tar -c -z -f $(TARBALL) $(SOURCE) makefile
Expand Down

0 comments on commit ec2b045

Please sign in to comment.