2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-10 21:09:07 +01:00

engine: platform: psvita: explicitly export __aeabi_ul2f

This commit is contained in:
Alibek Omarov 2024-08-16 02:22:25 +03:00
parent 55055a70f0
commit f3d181b5ee

View File

@ -46,6 +46,7 @@ extern void *__aeabi_idivmod;
extern void *__aeabi_uidivmod; extern void *__aeabi_uidivmod;
extern void *__aeabi_d2ulz; extern void *__aeabi_d2ulz;
extern void *__aeabi_ul2d; extern void *__aeabi_ul2d;
extern void *__aeabi_ul2f;
static const vrtld_export_t aux_exports[] = static const vrtld_export_t aux_exports[] =
{ {
@ -55,6 +56,7 @@ static const vrtld_export_t aux_exports[] =
VRTLD_EXPORT_SYMBOL( __aeabi_uidivmod ), VRTLD_EXPORT_SYMBOL( __aeabi_uidivmod ),
VRTLD_EXPORT_SYMBOL( __aeabi_uidiv ), VRTLD_EXPORT_SYMBOL( __aeabi_uidiv ),
VRTLD_EXPORT_SYMBOL( __aeabi_ul2d ), VRTLD_EXPORT_SYMBOL( __aeabi_ul2d ),
VRTLD_EXPORT_SYMBOL( __aeabi_ul2f ),
VRTLD_EXPORT_SYMBOL( _impure_ptr ), VRTLD_EXPORT_SYMBOL( _impure_ptr ),
VRTLD_EXPORT_SYMBOL( ctime ), VRTLD_EXPORT_SYMBOL( ctime ),
VRTLD_EXPORT_SYMBOL( vasprintf ), VRTLD_EXPORT_SYMBOL( vasprintf ),