From: Willy Tarreau Date: Thu, 8 Dec 2022 16:26:50 +0000 (+0100) Subject: CLEANUP: pool: only include pool-os from pool.c not pool.h X-Git-Tag: v2.8-dev1~157 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=76a97a98ca5441913d032ea89201d9129fbcbb6a;p=thirdparty%2Fhaproxy.git CLEANUP: pool: only include pool-os from pool.c not pool.h There's no need for the low-level pool functions to be known from all callers anymore, they're only used by pool.c. Let's reduce the amount of header files processed. --- diff --git a/include/haproxy/pool.h b/include/haproxy/pool.h index 017719d19f..1275146616 100644 --- a/include/haproxy/pool.h +++ b/include/haproxy/pool.h @@ -27,7 +27,6 @@ #include #include #include -#include #include #include diff --git a/src/pool.c b/src/pool.c index 48e51e665d..ddea4c06b6 100644 --- a/src/pool.c +++ b/src/pool.c @@ -23,6 +23,7 @@ #include #include #include +#include #include #include #include