From e3debeac7a64286d1b5c635847aff907b262122d Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Mon, 12 May 2025 12:29:30 +0200 Subject: [PATCH] not broken --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e1296cf..09764ea 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CC := gcc CFLAGS := -Wall -Wextra -O2 #CFLAGS += -std=c99 # C99 breaks sbrk for some reason (likely toolchain bug) -LIBS := -lsqlite3 +LIBS := -lsqlite3 # Everything links to sqlite rofl SRC := $(wildcard *.c) OBJ := $(SRC:.c=.o)