diff options
| author | Ray <[email protected]> | 2022-08-28 15:28:57 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2022-08-28 15:28:57 +0200 |
| commit | 482dbfc52ea57b9241677c8a2e103526f0be926f (patch) | |
| tree | 45011158c01ee1f1795844c7cb96f6af1afcdd60 /src | |
| parent | 10ae54379af2d1e251b1c16170689afc274a8b8b (diff) | |
| download | raylib-482dbfc52ea57b9241677c8a2e103526f0be926f.tar.gz raylib-482dbfc52ea57b9241677c8a2e103526f0be926f.zip | |
Avoid error on `implicit-function-declaration`
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
