atan2f libc HLE

This commit is contained in:
georgemoralis
2023-10-17 17:15:08 +03:00
parent f6c97963bd
commit ad83c454a7
3 changed files with 6 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
#include <debug.h>
#include <cmath>
#include <cstdlib>
#include <cstring>
@@ -42,4 +43,6 @@ char* PS4_SYSV_ABI strncpy(char* dest, const char* src, size_t count) { return s
void* PS4_SYSV_ABI memmove(void* dest, const void* src, std::size_t count) { return std::memmove(dest, src, count); }
float PS4_SYSV_ABI atan2f(float y, float x) { return std::atan2f(y, x); }
}; // namespace Emulator::HLE::Libraries::LibC

View File

@@ -20,4 +20,6 @@ int PS4_SYSV_ABI strcmp(const char* str1, const char* str2);
size_t PS4_SYSV_ABI strlen(const char* str);
char* PS4_SYSV_ABI strncpy(char* dest, const char* src, size_t count);
void* PS4_SYSV_ABI memmove(void* dest, const void* src, std::size_t count);
float PS4_SYSV_ABI atan2f(float y, float x);
} // namespace Emulator::HLE::Libraries::LibC