diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-08-05 02:52:24 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-08-05 03:05:50 -0400 |
| commit | d9404d928c2cbbdd7fd34ba6c1be6a34dee3452f (patch) | |
| tree | cb417853e8e6937ebb5a4e73b5968f36e0f62e49 /core/sys | |
| parent | fe754af13dcc6eb69ec5960b48c9de44a2eb3101 (diff) | |
Add copyright info to `core:sys/freebsd`
Diffstat (limited to 'core/sys')
| -rw-r--r-- | core/sys/freebsd/syscalls.odin | 8 | ||||
| -rw-r--r-- | core/sys/freebsd/types.odin | 8 |
2 files changed, 16 insertions, 0 deletions
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 <rune@swevencraft.org>. + 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 <rune@swevencraft.org>. + 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. |