From ea7ffbde7da1cd840802800a2e7daa2868c79c70 Mon Sep 17 00:00:00 2001 From: Andy Ross Date: Mon, 26 Oct 2020 10:56:58 -0700 Subject: [PATCH] subsys/bluetooth: Add missing stdint.h include This tiny header uses non-builtin types but includes no headers that would define them. Recent header motion seems to have exposed a case where this file can get built before its dependencies are included. Add the header directly. Signed-off-by: Andy Ross --- subsys/bluetooth/controller/hal/cntr.h | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/bluetooth/controller/hal/cntr.h b/subsys/bluetooth/controller/hal/cntr.h index 6b4303e6c06..39862c1a606 100644 --- a/subsys/bluetooth/controller/hal/cntr.h +++ b/subsys/bluetooth/controller/hal/cntr.h @@ -4,6 +4,7 @@ * * SPDX-License-Identifier: Apache-2.0 */ +#include void cntr_init(void); uint32_t cntr_start(void);