diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-10 09:25:27 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-10 09:25:27 +0000 |
| commit | 6d27853f565439ca37c573585c1dab639015f892 (patch) | |
| tree | fa128c004e206d00795b55e310271af0b3a57945 /util/nvmutil/Makefile | |
| parent | f2d982e9b3087a9ca6abb9581aba9ac6bcf5f9ac (diff) | |
util/nvmutil: use C90 instead of C99
with the other changes made recently, super old
compilers now work.
yes, i needed to change some specifiers in printf.
typedefs provided for uint, and a define included
X OPEN SOURCE 500. and asserts for integers.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/nvmutil/Makefile')
| -rw-r--r-- | util/nvmutil/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/nvmutil/Makefile b/util/nvmutil/Makefile index 22376c70..bef6f28c 100644 --- a/util/nvmutil/Makefile +++ b/util/nvmutil/Makefile @@ -3,7 +3,7 @@ # SPDX-FileCopyrightText: 2023 Riku Viitanen <riku.viitanen@protonmail.com> CC?=cc -CFLAGS?=-Os -Wall -Wextra -Werror -pedantic -std=c99 +CFLAGS?=-Os -Wall -Wextra -Werror -pedantic -std=c90 DESTDIR?= PREFIX?=/usr/local INSTALL?=install |
