summaryrefslogtreecommitdiffhomepage
path: root/src/arch
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/nt32/_dlstart.c6
-rw-r--r--src/arch/nt32/cmd.c6
-rw-r--r--src/arch/nt32/crt_glue.c6
-rw-r--r--src/arch/nt32/crt_pe.c6
-rw-r--r--src/arch/nt32/crt_tls.c6
-rw-r--r--src/arch/nt32/debug.c6
-rw-r--r--src/arch/nt32/fs.c6
-rw-r--r--src/arch/nt32/nt32/chelper.S6
-rw-r--r--src/arch/nt32/syscall_disp.c6
-rw-r--r--src/arch/nt32/vtbl.c6
-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
20 files changed, 120 insertions, 0 deletions
diff --git a/src/arch/nt32/_dlstart.c b/src/arch/nt32/_dlstart.c
index 2cfbcbf..e4f6385 100644
--- a/src/arch/nt32/_dlstart.c
+++ b/src/arch/nt32/_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/nt32/cmd.c b/src/arch/nt32/cmd.c
index 932737d..92a3068 100644
--- a/src/arch/nt32/cmd.c
+++ b/src/arch/nt32/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/nt32/crt_glue.c b/src/arch/nt32/crt_glue.c
index ccebd64..8e9ac65 100644
--- a/src/arch/nt32/crt_glue.c
+++ b/src/arch/nt32/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/nt32/crt_pe.c b/src/arch/nt32/crt_pe.c
index 0dc75a4..3024bbf 100644
--- a/src/arch/nt32/crt_pe.c
+++ b/src/arch/nt32/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/nt32/crt_tls.c b/src/arch/nt32/crt_tls.c
index 20080c6..c6d5a77 100644
--- a/src/arch/nt32/crt_tls.c
+++ b/src/arch/nt32/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/nt32/debug.c b/src/arch/nt32/debug.c
index e99a83e..ba72d4b 100644
--- a/src/arch/nt32/debug.c
+++ b/src/arch/nt32/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/nt32/fs.c b/src/arch/nt32/fs.c
index 11c9b7d..2cf93ee 100644
--- a/src/arch/nt32/fs.c
+++ b/src/arch/nt32/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/nt32/nt32/chelper.S b/src/arch/nt32/nt32/chelper.S
index 6d6a52b..8e17e68 100644
--- a/src/arch/nt32/nt32/chelper.S
+++ b/src/arch/nt32/nt32/chelper.S
@@ -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. */
+/**************************************************************************/
+
#ifdef LIBC_NO_COMPLEX
.globl ___udivdi3
diff --git a/src/arch/nt32/syscall_disp.c b/src/arch/nt32/syscall_disp.c
index 61ff807..18747ff 100644
--- a/src/arch/nt32/syscall_disp.c
+++ b/src/arch/nt32/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/nt32/vtbl.c b/src/arch/nt32/vtbl.c
index ad0a0e9..920144a 100644
--- a/src/arch/nt32/vtbl.c
+++ b/src/arch/nt32/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"
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"