From 2229fd91f7230ae7068814ae029b733945852eb1 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Tue, 2 Apr 2024 09:17:06 +0200 Subject: Kernel: Fix some memory leaks --- userland/libc/include/fcntl.h | 1 + 1 file changed, 1 insertion(+) (limited to 'userland/libc/include/fcntl.h') diff --git a/userland/libc/include/fcntl.h b/userland/libc/include/fcntl.h index 29134be..57c968a 100644 --- a/userland/libc/include/fcntl.h +++ b/userland/libc/include/fcntl.h @@ -11,3 +11,4 @@ #define O_RDWR (O_WRITE | O_READ) int open(const char *file, int flags, ...); +int open_process(int pid); -- cgit v1.2.3