AP_Common: move AP_RTC::mktime to be ap_mktime

in preparation for AP_RTC_ENABLED
This commit is contained in:
Peter Barker 2023-06-22 14:22:58 +10:00 committed by Andrew Tridgell
parent 84e4a45dc3
commit 4124c6ed3f
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#pragma once
#include <time.h>
// replacement for mktime()
time_t ap_mktime(const struct tm *t);