mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
Mac OSX: fix includes & add missing functionality
This commit is contained in:
parent
f908a3ca78
commit
64cfab5b46
6 changed files with 55 additions and 4 deletions
|
@ -366,7 +366,9 @@ int main(int arg, char **argv)
|
|||
|
||||
// #define your own functions "STBTT_malloc" / "STBTT_free" to avoid malloc.h
|
||||
#ifndef STBTT_malloc
|
||||
#ifndef __APPLE__
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#define STBTT_malloc(x,u) malloc(x)
|
||||
#define STBTT_free(x,u) free(x)
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue