summaryrefslogtreecommitdiff
path: root/Tests/LibC
diff options
context:
space:
mode:
authorTim Schumacher <timschumi@gmx.de>2021-10-23 02:07:38 +0200
committerAndreas Kling <kling@serenityos.org>2022-03-08 22:00:28 +0100
commit8ebc74919182bbaecead47fb37804d7e54ef9ea6 (patch)
tree804da19318e3a461b41551660f71ef6bb65ffdee /Tests/LibC
parentf748586393ef5ffcaab9e745b418a7275c8ada57 (diff)
downloadserenity-8ebc74919182bbaecead47fb37804d7e54ef9ea6.zip
Tests: Include limits.h for PATH_MAX in realpath tests
Diffstat (limited to 'Tests/LibC')
-rw-r--r--Tests/LibC/TestRealpath.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/LibC/TestRealpath.cpp b/Tests/LibC/TestRealpath.cpp
index 1ca9ac5540..c0fb283890 100644
--- a/Tests/LibC/TestRealpath.cpp
+++ b/Tests/LibC/TestRealpath.cpp
@@ -9,6 +9,7 @@
#include <AK/String.h>
#include <AK/StringBuilder.h>
#include <errno.h>
+#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>