diff options
author | thatdutchguy <209150+thatdutchguy@users.noreply.github.com> | 2021-03-16 11:05:23 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-16 21:56:47 +0100 |
commit | 10e3e8f6d43bbb9c03328dae2a9875f955fd0a86 (patch) | |
tree | 75970ac6820a187426301674410a59abb948b179 /Userland | |
parent | fa6bce5087618f8b8bb321e0ade082019d5dd7a7 (diff) | |
download | serenity-10e3e8f6d43bbb9c03328dae2a9875f955fd0a86.zip |
Kernel: Add _SC_CLK_TCK to sysconf.
Unbreaks the hatari port.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibC/unistd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/unistd.h b/Userland/Libraries/LibC/unistd.h index 6c978e2dc1..a4ead75035 100644 --- a/Userland/Libraries/LibC/unistd.h +++ b/Userland/Libraries/LibC/unistd.h @@ -177,6 +177,7 @@ enum { _SC_TTY_NAME_MAX, _SC_PAGESIZE, _SC_GETPW_R_SIZE_MAX, + _SC_CLK_TCK, }; #define _SC_NPROCESSORS_CONF _SC_NPROCESSORS_CONF |