diff options
| author | Liam Mitchell <[email protected]> | 2025-08-21 00:19:53 +0000 |
|---|---|---|
| committer | Liam Mitchell <[email protected]> | 2025-08-21 00:19:53 +0000 |
| commit | ce01022f8e51774cf39d8469bc14d0440f56839d (patch) | |
| tree | e1dcb5eb2e6e37d8ca03b5b035b51d6ebaada749 /src/zencore/process.cpp | |
| parent | Fix trailing whitespace in service_cmd.cpp (diff) | |
| download | zen-ce01022f8e51774cf39d8469bc14d0440f56839d.tar.xz zen-ce01022f8e51774cf39d8469bc14d0440f56839d.zip | |
Use correct sysctl headers on Mac
Diffstat (limited to 'src/zencore/process.cpp')
| -rw-r--r-- | src/zencore/process.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zencore/process.cpp b/src/zencore/process.cpp index 8dc251c26..0b25d14f4 100644 --- a/src/zencore/process.cpp +++ b/src/zencore/process.cpp @@ -31,7 +31,7 @@ #if ZEN_PLATFORM_MAC # include <libproc.h> -# include <sys/kinfo_proc.h> +# include <sys/types.h> # include <sys/sysctl.h> #endif |