aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Native/JitSupportDarwin.cs
blob: 7d6a8634a9222dfe7c308e890bc64c14b2f8ef06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;

namespace ARMeilleure.Native
{
    [SupportedOSPlatform("macos")]
    public static partial class JitSupportDarwin
    {
        [LibraryImport("libarmeilleure-jitsupport", EntryPoint = "armeilleure_jit_memcpy")]
        public static partial void Copy(IntPtr dst, IntPtr src, ulong n);
    }
}