From 48f4b30780038d618b4d19dc94f68caecf99cf52 Mon Sep 17 00:00:00 2001 From: Carlos O'Donell Date: Thu, 2 Jun 2022 11:00:54 -0400 Subject: [PATCH] elf: Add #include for use of E* constants. In __strerror_r we use errno constants and must include errno.h. Tested on x86_64 and i686 without regression. --- elf/dl-minimal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elf/dl-minimal.c b/elf/dl-minimal.c index a6befe12b5..379db134a4 100644 --- a/elf/dl-minimal.c +++ b/elf/dl-minimal.c @@ -25,7 +25,7 @@ #include #include #include - +#include /* The rtld startup code calls __rtld_malloc_init_stubs after the first self-relocation to adjust the pointers to the minimal -- 2.11.4.GIT