diff options
author | Anton Kling <anton@kling.gg> | 2024-04-17 16:55:16 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-04-17 16:55:16 +0200 |
commit | d0cca44913356f8ce15e15216b0e26c2e74b4d06 (patch) | |
tree | f85f5360e528da9914cd4c45f4719d454711f012 /userland/libc/include/limits.h | |
parent | d3f8196eb2cd57fec5f6e2691fdbc802c4d92fc8 (diff) |
LibC: Add more functions that support "long long" integers
Diffstat (limited to 'userland/libc/include/limits.h')
-rw-r--r-- | userland/libc/include/limits.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/include/limits.h b/userland/libc/include/limits.h index 6d0abe0..ad9e40c 100644 --- a/userland/libc/include/limits.h +++ b/userland/libc/include/limits.h @@ -2,3 +2,4 @@ #define FILENAME_MAX PATH_MAX #define ULONG_MAX 0xFFFFFFFFUL #define LONG_MAX 2147483647 +#define LLONG_MAX 9223372036854775807 |