repo.or.cz
/
mono.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-21 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git]
/
mono
/
utils
/
mono-publib.c
blob
70271a57f8f7d48bb7f1ee69c1fc5c73f094a405
1
#include
"config.h"
2
#include <mono/utils/mono-publib.h>
3
#include <glib.h>
4
5
void
6
mono_free
(
void
*
ptr
)
7
{
8
g_free
(
ptr
);
9
}
10