1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Removed internal

This commit is contained in:
Brian Fiete 2020-03-30 14:08:15 -07:00
parent 7014320916
commit 954613fe0c

View file

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