comphelper/source/misc/random.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit f0f1c92091949b3fd1e6315f733f2e1f0c371e97 Author: Stephan Bergmann <stephan.bergm...@allotropia.de> AuthorDate: Mon Sep 22 17:22:06 2025 +0200 Commit: Stephan Bergmann <stephan.bergm...@allotropia.de> CommitDate: Mon Sep 22 20:25:08 2025 +0200 Missing include (for getenv) Change-Id: I7bc04264cf9e5ad3553a9f8c5b071b905bdb2f3c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191357 Reviewed-by: Stephan Bergmann <stephan.bergm...@collabora.com> Tested-by: Jenkins diff --git a/comphelper/source/misc/random.cxx b/comphelper/source/misc/random.cxx index 7ee67ac1a8c2..6b125952ad96 100644 --- a/comphelper/source/misc/random.cxx +++ b/comphelper/source/misc/random.cxx @@ -12,6 +12,7 @@ #include <comphelper/random.hxx> #include <assert.h> +#include <stdlib.h> #include <time.h> #include <mutex> #include <random>