Skip to content

Commit

Permalink
Merge pull request #1 from jackcarrozzo/master
Browse files Browse the repository at this point in the history
example-usage/Makefile: use std=c99 to appease the inline def gods
  • Loading branch information
psachs authored Jul 23, 2024
2 parents 0c0107a + b111acc commit 827259f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example-usage/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ driver_sources = ${src_dir}/sht4x_i2c.h ${src_dir}/sht4x_i2c.c

i2c_implementation ?= ${src_dir}/sensirion_i2c_hal.c

CFLAGS = -Os -Wall -fstrict-aliasing -Wstrict-aliasing=1 -Wsign-conversion -fPIC -I${src_dir} -I.
CFLAGS = -std=c99 -Os -Wall -fstrict-aliasing -Wstrict-aliasing=1 -Wsign-conversion -fPIC -I${src_dir} -I.

ifdef CI
CFLAGS += -Werror
Expand Down

0 comments on commit 827259f

Please sign in to comment.