lower C/C++ version requirement

This commit is contained in:
Zack Buhman 2025-12-09 15:51:17 -06:00
parent c884d7f900
commit 04a73ef02a
3 changed files with 4 additions and 2 deletions

View File

@ -7,8 +7,8 @@ MAKEFILE_PATH := $(patsubst %/,%,$(dir $(abspath $(firstword $(MAKEFILE_LIST))))
DEBUG = -g
CSTD += -std=gnu23
CXXSTD += -std=gnu++23
CSTD += -std=gnu11
CXXSTD += -std=gnu++14
CFLAGS += -Wall -Werror -Wfatal-errors
CFLAGS += -Wno-error=unused-function

View File

@ -1,6 +1,7 @@
#pragma once
#include <stdint.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {

View File

@ -1,4 +1,5 @@
#include <math.h>
#include <stdbool.h>
#include "unparse.h"