mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-04 06:11:17 +00:00
13 lines
147 B
C
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);
|
|
}
|