mgcp_client_pool.h: add missing stdbool include

Fix for:
[   34s] In file included from vty.c:22:
[   34s] /usr/include/osmocom/mgcp_client/mgcp_client_pool.h:18:1: error: unknown type name 'bool'; did you mean '_Bool'?
[   34s]  bool mgcp_client_pool_member_is_blocked(const struct mgcp_client_pool_member *pool_member);

Related: https://obs.osmocom.org/package/live_build_log/osmocom:master/osmo-bsc-nat/CentOS_8/x86_64
Change-Id: Ic3773f49160cbb8c6f53c4f0e17b897017dec98a
This commit is contained in:
Oliver Smith 2022-10-14 16:42:03 +02:00
parent 5d8b5b0935
commit cb922b646f
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#pragma once
#include <stdbool.h>
struct mgcp_client;
struct mgcp_client_pool;
struct mgcp_client_pool_member;