1From 9fc45a2cf3b78573a568abf538a6e6f4bd30b2d7 Mon Sep 17 00:00:00 2001 2From: Alex Kiernan <alex.kiernan@gmail.com> 3Date: Wed, 27 Sep 2023 11:45:26 +0100 4Subject: [PATCH] Add missing limits.h 5 6Upstream-Status: Pending 7Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> 8--- 9 mDNSShared/PlatformCommon.c | 1 + 10 1 file changed, 1 insertion(+) 11 12Index: mDNSResponder/mDNSShared/PlatformCommon.c 13=================================================================== 14--- mDNSResponder.orig/mDNSShared/PlatformCommon.c 15+++ mDNSResponder/mDNSShared/PlatformCommon.c 16@@ -32,6 +32,7 @@ 17 #include <time.h> 18 #include <sys/time.h> // Needed for #include <sys/time.h>(). 19 #include <assert.h> 20+#include <limits.h> 21 22 23 #include "mDNSEmbeddedAPI.h" // Defines the interface provided to the client layer above 24