diff options
author | Liav A <liavalb@gmail.com> | 2023-02-24 17:14:24 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-02-24 20:35:45 +0100 |
commit | 8f3c343b88dcafabd0f548a0e434dbb22d7a119a (patch) | |
tree | 14e6257bda3bd0106a0b2d617273a7c2106240a2 /Userland/Utilities | |
parent | e7142c482aea3c4bbce3879c0a1131f38f4ab0e6 (diff) | |
download | serenity-8f3c343b88dcafabd0f548a0e434dbb22d7a119a.zip |
Kernel+Userland: Unify declarations for KCOV in Kernel/API/kcov.h
Diffstat (limited to 'Userland/Utilities')
-rw-r--r-- | Userland/Utilities/kcov-example.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/kcov-example.cpp b/Userland/Utilities/kcov-example.cpp index 6f86538667..990a82d83e 100644 --- a/Userland/Utilities/kcov-example.cpp +++ b/Userland/Utilities/kcov-example.cpp @@ -4,12 +4,12 @@ * SPDX-License-Identifier: BSD-2-Clause */ +#include <Kernel/API/kcov.h> #include <LibCore/System.h> #include <LibMain/Main.h> #include <fcntl.h> #include <stdio.h> #include <sys/ioctl.h> -#include <sys/kcov.h> #include <sys/mman.h> #include <unistd.h> |