<html><head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Mar 20, 2019, at 12:37, Rafael David Tinoco <<a href="mailto:rafael.tinoco@linaro.org" class="">rafael.tinoco@linaro.org</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">When adding a common header to my tests I missed this include guard when<br class="">accidentally including tst_safe_clocks.h from .c and .h files. Since<br class="">other tst_safe_*.h files have guards I thought it would be good to add<br class="">to this one as well.<br class=""><br class="">Signed-off-by: Rafael David Tinoco <<a href="mailto:rafael.tinoco@linaro.org" class="">rafael.tinoco@linaro.org</a>><br class="">---<br class=""> include/tst_safe_clocks.h | 5 +++++<br class=""> 1 file changed, 5 insertions(+)<br class=""><br class="">diff --git a/include/tst_safe_clocks.h b/include/tst_safe_clocks.h<br class="">index a952be4bf..0f642148e 100644<br class="">--- a/include/tst_safe_clocks.h<br class="">+++ b/include/tst_safe_clocks.h<br class="">@@ -5,6 +5,9 @@<br class="">  * <a href="mailto:code@zilogic.com" class="">Email : code@zilogic.com</a><br class="">  */<br class=""><br class="">+#ifndef TST_SAFE_CLOCK_H__<br class="">+#define TST_SAFE_CLOCK_H__<br class="">+<br class=""> #include <time.h><br class=""> #include <sys/timex.h><br class=""> #include "tst_test.h"<br class="">@@ -69,3 +72,5 @@ static inline void safe_clock_adjtime(const char *file, const int lineno,<br class=""><br class=""> #define SAFE_CLOCK_ADJTIME(clk_id, txc)\<br class=""> <span class="Apple-tab-span" style="white-space:pre">       </span>safe_clock_adjtime(__FILE__, __LINE__, (clk_id), (txc))<br class="">+<br class="">+#endif /* SAFE_CLOCK_H__ */<br class="">-- <br class="">2.20.1<br class=""></div></div></blockquote></div><div class=""><br class=""></div><div class="">Ack.</div><br class=""><div class="">Reviewed-by: Enji Cooper <<a href="mailto:yaneurabeya@gmail.com" class="">yaneurabeya@gmail.com</a>></div></body></html>