1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Merge pull request #259 from qzole/sdl_public_malloc

Made malloc and free public in SDL binding
This commit is contained in:
Brian Fiete 2020-05-14 15:16:35 -07:00 committed by GitHub
commit 273a2035bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,10 +52,10 @@ namespace SDL2
}
[LinkName("SDL_malloc")]
static extern void* malloc(int size);
public static extern void* malloc(int size);
[LinkName("SDL_free")]
static extern void free(void* memblock);
public static extern void free(void* memblock);
public struct RWOps;