From 482dbfc52ea57b9241677c8a2e103526f0be926f Mon Sep 17 00:00:00 2001 From: Ray <raysan5@gmail.com> Date: Sun, 28 Aug 2022 15:28:57 +0200 Subject: [PATCH] Avoid error on `implicit-function-declaration` --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index ea337604..df8f9d0f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -348,7 +348,7 @@ endif # -Wstrict-prototypes warn if a function is declared or defined without specifying the argument types # -Werror=implicit-function-declaration catch function calls without prior declaration ifeq ($(PLATFORM),PLATFORM_DESKTOP) - CFLAGS += -Werror=implicit-function-declaration + #CFLAGS += -Werror=implicit-function-declaration endif ifeq ($(PLATFORM),PLATFORM_WEB) # -Os # size optimization