17 lines
233 B
C
17 lines
233 B
C
#ifndef COMPATIBLITY_H
|
|
#define COMPATIBLITY_H
|
|
|
|
#include <sys/time.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
extern uint32_t millis(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //Compatibility.h
|