From 0f9bd83469353b968a523dda639508e6dc10f4fa Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 19:47:32 +0000 Subject: [PATCH] fix: add missing jack include and remove duplicate compile rule Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 1 - stress_test.c | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index d3f5b16..7435aa7 100644 --- a/makefile +++ b/makefile @@ -54,7 +54,6 @@ transport.o: transport.c transport.h dispatcher.o: dispatcher.c dispatcher.h $(CC) $(CFLAGS) -c -o $@ $< - $(CC) $(CFLAGS) -c -o $@ $< test_engine.o: test_engine.c engine.h transport.h $(CC) $(CFLAGS) -c -o $@ $< diff --git a/stress_test.c b/stress_test.c index 0d8bdc7..b7bf947 100644 --- a/stress_test.c +++ b/stress_test.c @@ -8,6 +8,7 @@ #include #include "dispatcher.h" #include "transport.h" +#include static volatile int keep_running = 1;