From fcd6d9b9f5ed62734c873d308aa65143c520e0f5 Mon Sep 17 00:00:00 2001 From: apio Date: Fri, 21 Oct 2022 18:37:18 +0200 Subject: [PATCH] Add FIXME --- libs/libc/src/stdlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/libc/src/stdlib.cpp b/libs/libc/src/stdlib.cpp index 36d7e0e7..941a73c0 100644 --- a/libs/libc/src/stdlib.cpp +++ b/libs/libc/src/stdlib.cpp @@ -55,7 +55,7 @@ extern "C" char* getenv(const char*) { - return NULL; // Not implemented :) + return NULL; // FIXME: Not implemented :) } __lc_noreturn void _Exit(int status)