unleashed-firmware/firmware/targets/f7/platform_specific/intrinsic_export.h
Sergey Gavrilov d8500510be
API: explicitly add math.h (#2852)
* API: explicitly add math.h

* sync target api versions
2023-07-06 15:49:53 +04:00

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