Release 4.0.0-preview1-00051
[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 }