mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-06-02 18:13:33 -07:00
16 lines
227 B
C
16 lines
227 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);
|
|
double __aeabi_f2d(float);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|