projects
/
platform
/
core
/
csapi
/
tizenfx.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge remote-tracking branch 'uix-tts/tizen'
[platform/core/csapi/tizenfx.git]
/
src
/
Tizen.Multimedia
/
Common.Internal
/
LibcSupport.cs
1
2
using System;
3
4
namespace Tizen.Multimedia
5
{
6
internal static class LibcSupport
7
{
8
internal static void Free(IntPtr ptr)
9
{
10
Interop.Libc.Free(ptr);
11
}
12
}
13
}