diff options
author | Gunnar Beutner <gunnar@beutner.name> | 2021-04-12 01:36:38 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-14 21:46:20 +0200 |
commit | 75d774ba29f54acac8b4f707e51bbed203222550 (patch) | |
tree | df9675371000e5b27a972c87c441ae81dbfe5dc5 /Userland/Libraries/LibC/unistd.h | |
parent | 27befa6595c9c14bebd0e4f6346ac920d33c2706 (diff) | |
download | serenity-75d774ba29f54acac8b4f707e51bbed203222550.zip |
LibC: Add missing macro for _SC_CLK_TCK
Diffstat (limited to 'Userland/Libraries/LibC/unistd.h')
-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 54dd27a891..61cb577c4b 100644 --- a/Userland/Libraries/LibC/unistd.h +++ b/Userland/Libraries/LibC/unistd.h @@ -187,6 +187,7 @@ enum { #define _SC_PAGESIZE _SC_PAGESIZE #define _SC_TTY_NAME_MAX _SC_TTY_NAME_MAX #define _SC_GETPW_R_SIZE_MAX _SC_GETPW_R_SIZE_MAX +#define _SC_CLK_TCK _SC_CLK_TCK long sysconf(int name); |