1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-02 01:13:30 +00:00

Don't use malloc.h anymore

This commit is contained in:
twinaphex 2018-03-29 15:52:49 +02:00
parent 40594a3059
commit c5ec1885f2
3 changed files with 5 additions and 4 deletions

@ -1,5 +1,5 @@
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
#include <libretro.h>
#include <lists/string_list.h>

@ -1,6 +1,7 @@
#include "mylist.h"
#include <malloc.h>
#include <stdlib.h>
#include <string.h>
#include "mylist.h"
#include "mem_util.h"
void mylist_resize(MyList *list, int newSize, bool runConstructor)

@ -1,5 +1,5 @@
#include <stddef.h>
#include <malloc.h>
#include <stdlib.h>
#include <string.h>
#include <boolean.h>