mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-23 08:45:22 +03:00
21 lines
334 B
C
21 lines
334 B
C
|
|
#ifndef __COREDECLS_H
|
|
#define __COREDECLS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// TODO: put declarations here, get rid of -Wno-implicit-function-declaration
|
|
|
|
extern bool timeshift64_is_set;
|
|
|
|
void tune_timeshift64 (uint64_t now_us);
|
|
void settimeofday_cb (void (*cb)(void));
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __COREDECLS_H
|