Bring printf into scope in timesync.cpp

Slight changes in compilation order can cause the use of printf to fail without <cstdio> included.
This commit is contained in:
Elliot Cameron
2021-03-10 00:46:36 -05:00
committed by GitHub
parent 1d6e869a3e
commit 42bbd8218a

View File

@@ -27,6 +27,7 @@
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <chrono> #include <chrono>
#include <cstdio>
#include <functional> #include <functional>
#include <thread> #include <thread>