From 5b0b6cbc5d89ed2f37288ac90d4e714dacfaea8f Mon Sep 17 00:00:00 2001 From: Christian Reum Date: Sun, 4 Feb 2024 16:49:53 +0100 Subject: [PATCH] 6th functional commit --- src/wwm.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/wwm.c b/src/wwm.c index 10c1708..1a5496b 100644 --- a/src/wwm.c +++ b/src/wwm.c @@ -1,3 +1,4 @@ +#include #include #include #include "wwm.h" @@ -26,6 +27,10 @@ void wwm(){ 3, 2, 1 }; + + srand(time(0)); + int frage = rand() % 5; + return; }