summaryrefslogtreecommitdiffhomepage
path: root/src/arch/nt64
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2023-12-23 21:17:35 +0000
committermidipix <writeonce@midipix.org>2023-12-23 21:17:35 +0000
commit716654e8dd98767010ab4bc3967bf95496f97859 (patch)
tree010bedb58a166072dac573d5169bd658c8f67c7a /src/arch/nt64
parent965dca42ea74b4d6c5bbd779e37e7fd758de1cfc (diff)
downloadmmglue-716654e8dd98767010ab4bc3967bf95496f97859.tar.bz2
mmglue-716654e8dd98767010ab4bc3967bf95496f97859.tar.xz
add copyright notice to C and Assembly translation units where applicable.
Diffstat (limited to 'src/arch/nt64')
-rw-r--r--src/arch/nt64/_dlstart.c6
-rw-r--r--src/arch/nt64/cmd.c6
-rw-r--r--src/arch/nt64/crt_glue.c6
-rw-r--r--src/arch/nt64/crt_pe.c6
-rw-r--r--src/arch/nt64/crt_tls.c6
-rw-r--r--src/arch/nt64/debug.c6
-rw-r--r--src/arch/nt64/fs.c6
-rw-r--r--src/arch/nt64/syscall_disp.c6
-rw-r--r--src/arch/nt64/unwind.c6
-rw-r--r--src/arch/nt64/vtbl.c6
10 files changed, 60 insertions, 0 deletions
diff --git a/src/arch/nt64/_dlstart.c b/src/arch/nt64/_dlstart.c
index 40498da..f078daa 100644
--- a/src/arch/nt64/_dlstart.c
+++ b/src/arch/nt64/_dlstart.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
typedef unsigned int uint32_t;
int _dlstart(
diff --git a/src/arch/nt64/cmd.c b/src/arch/nt64/cmd.c
index 932737d..92a3068 100644
--- a/src/arch/nt64/cmd.c
+++ b/src/arch/nt64/cmd.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <sys/cmd.h>
#include "syscall.h"
diff --git a/src/arch/nt64/crt_glue.c b/src/arch/nt64/crt_glue.c
index ccebd64..8e9ac65 100644
--- a/src/arch/nt64/crt_glue.c
+++ b/src/arch/nt64/crt_glue.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include <pthread.h>
diff --git a/src/arch/nt64/crt_pe.c b/src/arch/nt64/crt_pe.c
index 0dc75a4..3024bbf 100644
--- a/src/arch/nt64/crt_pe.c
+++ b/src/arch/nt64/crt_pe.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include "pthread_impl.h"
#include <threads.h>
diff --git a/src/arch/nt64/crt_tls.c b/src/arch/nt64/crt_tls.c
index 20080c6..c6d5a77 100644
--- a/src/arch/nt64/crt_tls.c
+++ b/src/arch/nt64/crt_tls.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include <stddef.h>
diff --git a/src/arch/nt64/debug.c b/src/arch/nt64/debug.c
index e99a83e..ba72d4b 100644
--- a/src/arch/nt64/debug.c
+++ b/src/arch/nt64/debug.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <stdint.h>
#include <stddef.h>
#include <signal.h>
diff --git a/src/arch/nt64/fs.c b/src/arch/nt64/fs.c
index 11c9b7d..2cf93ee 100644
--- a/src/arch/nt64/fs.c
+++ b/src/arch/nt64/fs.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <sys/fs.h>
#include "syscall.h"
diff --git a/src/arch/nt64/syscall_disp.c b/src/arch/nt64/syscall_disp.c
index 61ff807..18747ff 100644
--- a/src/arch/nt64/syscall_disp.c
+++ b/src/arch/nt64/syscall_disp.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include <stddef.h>
diff --git a/src/arch/nt64/unwind.c b/src/arch/nt64/unwind.c
index 8ed0bdd..4f54ed3 100644
--- a/src/arch/nt64/unwind.c
+++ b/src/arch/nt64/unwind.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <stdint.h>
#include <signal.h>
#include <sys/unwind.h>
diff --git a/src/arch/nt64/vtbl.c b/src/arch/nt64/vtbl.c
index ad0a0e9..920144a 100644
--- a/src/arch/nt64/vtbl.c
+++ b/src/arch/nt64/vtbl.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "psxglue.h"