diff options
author | Linnnus <[email protected]> | 2024-11-25 09:26:56 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-11-25 09:26:56 +0100 |
commit | 9e2cf147e2373e1228e32c3f7c8cb712e3a5a28f (patch) | |
tree | 29f1e1e9626717fb7069d1f1feb755ee9da34c1b /pkgs | |
parent | 841b9230932b223adf529ca635b5cfb7d1ec8052 (diff) |
pkgs/human-sleep: Fix missing UINT64_MAX on Linux
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/human-sleep/human-sleep.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/human-sleep/human-sleep.c b/pkgs/human-sleep/human-sleep.c index 5381fc4..b55cbc2 100644 --- a/pkgs/human-sleep/human-sleep.c +++ b/pkgs/human-sleep/human-sleep.c @@ -5,6 +5,7 @@ #include <assert.h> #include <errno.h> #include <stdbool.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |