From fdaa2ecf4bfc473a5e50333d234d15a2555b330d Mon Sep 17 00:00:00 2001 From: Ewout van Bekkum Date: Wed, 3 Feb 2021 14:40:58 -0800 Subject: [PATCH] pw_sync: add missing C headers Change-Id: I53b518726bd6930c9905c5ef9120992ca7fcd38e Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/31802 Commit-Queue: Ewout van Bekkum Reviewed-by: Armando Montanez --- pw_sync/public/pw_sync/binary_semaphore.h | 1 + pw_sync/public/pw_sync/counting_semaphore.h | 1 + 2 files changed, 2 insertions(+) diff --git a/pw_sync/public/pw_sync/binary_semaphore.h b/pw_sync/public/pw_sync/binary_semaphore.h index 43603ec10..ecb3e3122 100644 --- a/pw_sync/public/pw_sync/binary_semaphore.h +++ b/pw_sync/public/pw_sync/binary_semaphore.h @@ -13,6 +13,7 @@ // the License. #pragma once +#include #include #include "pw_chrono/system_clock.h" diff --git a/pw_sync/public/pw_sync/counting_semaphore.h b/pw_sync/public/pw_sync/counting_semaphore.h index 8768bab36..cf2e90478 100644 --- a/pw_sync/public/pw_sync/counting_semaphore.h +++ b/pw_sync/public/pw_sync/counting_semaphore.h @@ -13,6 +13,7 @@ // the License. #pragma once +#include #include #include "pw_chrono/system_clock.h"