From 1aec7771d4560d91ef97c18d9b5cdb29dde132a7 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Fri, 26 Jan 2024 22:34:31 -0500 Subject: [PATCH] Add missing `#include` for `rlim_t` My local build in the shell was failing while CI was fine; not sure why that is but having the include here is definitely more correct. Per the POSIX spec, this is where it is supposed to be gotten https://pubs.opengroup.org/onlinepubs/009695399/basedefs/sys/resource.h.html --- src/libutil/current-process.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libutil/current-process.hh b/src/libutil/current-process.hh index 97ea70bf4..444c717d1 100644 --- a/src/libutil/current-process.hh +++ b/src/libutil/current-process.hh @@ -2,6 +2,7 @@ ///@file #include +#include #include "types.hh"