build: Lower required C standard for limine-install to C99

This commit is contained in:
mintsuki 2022-03-02 16:05:40 +01:00
parent 1207b8d9b1
commit 271022e2d6
1 changed files with 1 additions and 1 deletions

View File

@ -34,4 +34,4 @@ clean:
rm -f limine-install limine-install.exe
limine-install: limine-install.c
$(CC) $(CFLAGS) $(LDFLAGS) -std=c11 limine-install.c -o $@
$(CC) $(CFLAGS) $(LDFLAGS) -std=c99 limine-install.c -o $@