diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-29 07:30:29 +0100 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-29 07:30:29 +0100 |
| commit | 909b321f3a834dbcccf884bc8206a3fe7f1af149 (patch) | |
| tree | d6cd5b6dc0382ed5cd719bc89d8a201aaeb9c7e2 /util/libreboot-utils | |
| parent | afe2e71c014e291b9915271d45c1fd933f2fa55f (diff) | |
lbutils makefile: use c99 in strict mode
not c90
i use stdint now on a few files. i had this
idea in my head to use C89 for some reason,
but this is pointless.
c99 however is worthy as a minimum, because
for example, compilers like tcc will adhere
to its spec (for the most part), so this is
the minimum reasonable requirement on modern
unix systems.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/libreboot-utils')
| -rw-r--r-- | util/libreboot-utils/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/libreboot-utils/Makefile b/util/libreboot-utils/Makefile index 872a37c4..07b3a727 100644 --- a/util/libreboot-utils/Makefile +++ b/util/libreboot-utils/Makefile @@ -20,7 +20,7 @@ LDIR = PORTABLE = $(LDIR) $(CFLAGS) WARN = $(PORTABLE) -Wall -Wextra -STRICT = $(WARN) -std=c90 -pedantic -Werror +STRICT = $(WARN) -std=c99 -pedantic -Werror HELLFLAGS = $(STRICT) -Weverything PROG = nvmutil |
