From d9404d928c2cbbdd7fd34ba6c1be6a34dee3452f Mon Sep 17 00:00:00 2001 From: Feoramund <161657516+Feoramund@users.noreply.github.com> Date: Mon, 5 Aug 2024 02:52:24 -0400 Subject: [PATCH] Add copyright info to `core:sys/freebsd` --- core/sys/freebsd/syscalls.odin | 8 ++++++++ core/sys/freebsd/types.odin | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/core/sys/freebsd/syscalls.odin b/core/sys/freebsd/syscalls.odin index 506a43bba..4a79bd56c 100644 --- a/core/sys/freebsd/syscalls.odin +++ b/core/sys/freebsd/syscalls.odin @@ -1,5 +1,13 @@ package sys_freebsd +/* + (c) Copyright 2024 Feoramund . + Made available under Odin's BSD-3 license. + + List of contributors: + Feoramund: Initial implementation. +*/ + import "base:intrinsics" import "core:c" diff --git a/core/sys/freebsd/types.odin b/core/sys/freebsd/types.odin index 0921221d8..a13961a47 100644 --- a/core/sys/freebsd/types.odin +++ b/core/sys/freebsd/types.odin @@ -1,5 +1,13 @@ package sys_freebsd +/* + (c) Copyright 2024 Feoramund . + Made available under Odin's BSD-3 license. + + List of contributors: + Feoramund: Initial implementation. +*/ + import "core:c" // These definitions have been extracted from a system running FreeBSD 14.0-RELEASE.