dev/c/Glib_GList/Glib_GList.c

12 lines
97 B
C
Raw Normal View History

2012-03-02 12:16:22 +04:00
#include <glib.h>
int main (void)
{
GList *l = NULL;
g_list_append (l, 0);
return 0;
}