aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-09-15 22:34:07 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-09-15 22:34:07 +0200
commit5af036c37cde1602d4050b14c864139ce7517cf2 (patch)
treec96c5860c4b9ceca4f354d568c937b1109a84b4f
parente81d1f6312de85e5640277f5968263aa8cd393db (diff)
downloadslcl-5af036c37cde1602d4050b14c864139ce7517cf2.tar.gz
auth.c: Add missing include
As opposed to other integer constants such as ULLONG_MAX, SIZE_MAX is defined by stdint.h, not limits.h.
-rw-r--r--auth.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/auth.c b/auth.c
index cd1ec23..0cfb6e2 100644
--- a/auth.c
+++ b/auth.c
@@ -9,6 +9,7 @@
#include <limits.h>
#include <stddef.h>
#include <stdlib.h>
+#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>