1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-11 19:13:36 +00:00
2017-07-03 06:34:21 +02:00

13 lines
147 B
C

// 9 april 2015
#include "uipriv_unix.h"
char *uiUnixStrdupText(const char *t)
{
return g_strdup(t);
}
void uiFreeText(char *t)
{
g_free(t);
}