diff --git a/src/IAllocator.cs b/src/IAllocator.cs index 09995e8..e8c32a5 100644 --- a/src/IAllocator.cs +++ b/src/IAllocator.cs @@ -1,4 +1,7 @@ -namespace SharpAllocators; +// Copyright (c) 2026 Viktor Stojanović. All rights reserved. +// Licensed under the MIT License. See LICENSE.txt in the project root for license information. + +namespace SharpAllocators; public unsafe interface IAllocator { diff --git a/src/NativeAllocator.cs b/src/NativeAllocator.cs index 421d05d..bb3727a 100644 --- a/src/NativeAllocator.cs +++ b/src/NativeAllocator.cs @@ -1,4 +1,7 @@ -using System.Runtime.CompilerServices; +// Copyright (c) 2026 Viktor Stojanović. All rights reserved. +// Licensed under the MIT License. See LICENSE.txt in the project root for license information. + +using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace SharpAllocators