diff options
author | Anton Kling <anton@kling.gg> | 2024-04-02 09:17:06 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-04-02 09:39:03 +0200 |
commit | 2229fd91f7230ae7068814ae029b733945852eb1 (patch) | |
tree | 416487f8c66c389c57dee465f648362ca59b8f23 /userland/libc/include/fcntl.h | |
parent | 7eceb43433634ee253507208baf1d8298b40e377 (diff) |
Kernel: Fix some memory leaks
Diffstat (limited to 'userland/libc/include/fcntl.h')
-rw-r--r-- | userland/libc/include/fcntl.h | 1 |
1 files changed, 1 insertions, 0 deletions
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); |