diff options
author | λP.(P izzy) <izder456@disroot.org> | 2024-02-19 20:33:39 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-20 03:33:39 +0100 |
commit | 9430502b16c0b4f1f82cd31d79beff15edd00762 (patch) | |
tree | f49ee93e8b3141ace1ff95235f7485ea7c284d09 /src | |
parent | a8429af13150dcdb81fbb9aeb1b66b7c5ece582d (diff) |
fix malloc on OpenBSD targets (#1979)
Diffstat (limited to 'src')
-rw-r--r-- | src/frontend/duckstation/gl/context.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/frontend/duckstation/gl/context.cpp b/src/frontend/duckstation/gl/context.cpp index a0a4183..308b3c4 100644 --- a/src/frontend/duckstation/gl/context.cpp +++ b/src/frontend/duckstation/gl/context.cpp @@ -3,11 +3,7 @@ #include "loader.h" #include <cstdlib> #include <cstring> -#ifdef __APPLE__ #include <stdlib.h> -#else -#include <malloc.h> -#endif Log_SetChannel(GL::Context); #if defined(_WIN32) |