mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-22 21:01:40 +03:00
d8500510be
* API: explicitly add math.h * sync target api versions
15 lines
200 B
C
15 lines
200 B
C
#pragma once
|
|
#include <errno.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void __clear_cache(void*, void*);
|
|
void* __aeabi_uldivmod(uint64_t, uint64_t);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|