From c9a0b6dc51028134050e5527c8ec936c7dc5fe2d Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Mon, 6 Jul 2026 23:48:14 +0200 Subject: überflüssige Flags und Includes entfernt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.c | 1 - makefile | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 19483e6..bd8d6e2 100644 --- a/main.c +++ b/main.c @@ -1,5 +1,4 @@ #include -#include #include int main(void) diff --git a/makefile b/makefile index e56f0ef..9077e02 100644 --- a/makefile +++ b/makefile @@ -1,10 +1,10 @@ all: uuid-test uuid-test: main.o - cc -L/usr/local/lib -luuid -s -o $@ main.o + cc -luuid -s -o $@ main.o main.o: main.c - cc -Wall -Werror -std=c99 -pedantic -I/usr/local/include -O2 -c main.c -o $@ + cc -Wall -Werror -std=c99 -pedantic -O2 -c main.c -o $@ .PHONY: clean clean: -- cgit v1.3