summaryrefslogtreecommitdiffhomepage
path: root/src/arch
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-04-14 19:11:00 +0000
committermidipix <writeonce@midipix.org>2024-04-14 19:11:00 +0000
commit000ff78bcc152cc59d12b5b779abb82d20bd9cab (patch)
tree86ca08adcc4842c206039f33cef782a4879e149d /src/arch
parente4259c553e87f53ad4b58b1414b14f125ad4d7e9 (diff)
downloadmmglue-000ff78bcc152cc59d12b5b779abb82d20bd9cab.tar.bz2
mmglue-000ff78bcc152cc59d12b5b779abb82d20bd9cab.tar.xz
Code base: updated all translation units to match the project's COPYING file.HEADmain
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/nt32/_dlstart.c2
-rw-r--r--src/arch/nt32/cmd.c2
-rw-r--r--src/arch/nt32/crt_glue.c2
-rw-r--r--src/arch/nt32/crt_pe.c2
-rw-r--r--src/arch/nt32/crt_tls.c2
-rw-r--r--src/arch/nt32/debug.c2
-rw-r--r--src/arch/nt32/fs.c2
-rw-r--r--src/arch/nt32/nt32/chelper.S2
-rw-r--r--src/arch/nt32/syscall_disp.c2
-rw-r--r--src/arch/nt32/vtbl.c2
-rw-r--r--src/arch/nt64/_dlstart.c2
-rw-r--r--src/arch/nt64/cmd.c2
-rw-r--r--src/arch/nt64/crt_glue.c2
-rw-r--r--src/arch/nt64/crt_pe.c2
-rw-r--r--src/arch/nt64/crt_tls.c2
-rw-r--r--src/arch/nt64/debug.c2
-rw-r--r--src/arch/nt64/fs.c2
-rw-r--r--src/arch/nt64/syscall_disp.c2
-rw-r--r--src/arch/nt64/unwind.c2
-rw-r--r--src/arch/nt64/vtbl.c2
20 files changed, 20 insertions, 20 deletions
diff --git a/src/arch/nt32/_dlstart.c b/src/arch/nt32/_dlstart.c
index e4f6385..2817d69 100644
--- a/src/arch/nt32/_dlstart.c
+++ b/src/arch/nt32/_dlstart.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
typedef unsigned int uint32_t;
diff --git a/src/arch/nt32/cmd.c b/src/arch/nt32/cmd.c
index 92a3068..a085369 100644
--- a/src/arch/nt32/cmd.c
+++ b/src/arch/nt32/cmd.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <sys/cmd.h>
diff --git a/src/arch/nt32/crt_glue.c b/src/arch/nt32/crt_glue.c
index 8e9ac65..d47611a 100644
--- a/src/arch/nt32/crt_glue.c
+++ b/src/arch/nt32/crt_glue.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <unistd.h>
diff --git a/src/arch/nt32/crt_pe.c b/src/arch/nt32/crt_pe.c
index 3024bbf..d2f67c7 100644
--- a/src/arch/nt32/crt_pe.c
+++ b/src/arch/nt32/crt_pe.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include "pthread_impl.h"
diff --git a/src/arch/nt32/crt_tls.c b/src/arch/nt32/crt_tls.c
index c6d5a77..b79fd5f 100644
--- a/src/arch/nt32/crt_tls.c
+++ b/src/arch/nt32/crt_tls.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <unistd.h>
diff --git a/src/arch/nt32/debug.c b/src/arch/nt32/debug.c
index ba72d4b..3fad6fc 100644
--- a/src/arch/nt32/debug.c
+++ b/src/arch/nt32/debug.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <stdint.h>
diff --git a/src/arch/nt32/fs.c b/src/arch/nt32/fs.c
index 2cf93ee..fce6c61 100644
--- a/src/arch/nt32/fs.c
+++ b/src/arch/nt32/fs.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <sys/fs.h>
diff --git a/src/arch/nt32/nt32/chelper.S b/src/arch/nt32/nt32/chelper.S
index 8e17e68..94a19ca 100644
--- a/src/arch/nt32/nt32/chelper.S
+++ b/src/arch/nt32/nt32/chelper.S
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#ifdef LIBC_NO_COMPLEX
diff --git a/src/arch/nt32/syscall_disp.c b/src/arch/nt32/syscall_disp.c
index 18747ff..f2b5e66 100644
--- a/src/arch/nt32/syscall_disp.c
+++ b/src/arch/nt32/syscall_disp.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <unistd.h>
diff --git a/src/arch/nt32/vtbl.c b/src/arch/nt32/vtbl.c
index 920144a..61f1976 100644
--- a/src/arch/nt32/vtbl.c
+++ b/src/arch/nt32/vtbl.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <unistd.h>
diff --git a/src/arch/nt64/_dlstart.c b/src/arch/nt64/_dlstart.c
index f078daa..9f9f989 100644
--- a/src/arch/nt64/_dlstart.c
+++ b/src/arch/nt64/_dlstart.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
typedef unsigned int uint32_t;
diff --git a/src/arch/nt64/cmd.c b/src/arch/nt64/cmd.c
index 92a3068..a085369 100644
--- a/src/arch/nt64/cmd.c
+++ b/src/arch/nt64/cmd.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <sys/cmd.h>
diff --git a/src/arch/nt64/crt_glue.c b/src/arch/nt64/crt_glue.c
index 8e9ac65..d47611a 100644
--- a/src/arch/nt64/crt_glue.c
+++ b/src/arch/nt64/crt_glue.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <unistd.h>
diff --git a/src/arch/nt64/crt_pe.c b/src/arch/nt64/crt_pe.c
index 3024bbf..d2f67c7 100644
--- a/src/arch/nt64/crt_pe.c
+++ b/src/arch/nt64/crt_pe.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include "pthread_impl.h"
diff --git a/src/arch/nt64/crt_tls.c b/src/arch/nt64/crt_tls.c
index c6d5a77..b79fd5f 100644
--- a/src/arch/nt64/crt_tls.c
+++ b/src/arch/nt64/crt_tls.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <unistd.h>
diff --git a/src/arch/nt64/debug.c b/src/arch/nt64/debug.c
index ba72d4b..3fad6fc 100644
--- a/src/arch/nt64/debug.c
+++ b/src/arch/nt64/debug.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <stdint.h>
diff --git a/src/arch/nt64/fs.c b/src/arch/nt64/fs.c
index 2cf93ee..fce6c61 100644
--- a/src/arch/nt64/fs.c
+++ b/src/arch/nt64/fs.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <sys/fs.h>
diff --git a/src/arch/nt64/syscall_disp.c b/src/arch/nt64/syscall_disp.c
index 18747ff..f2b5e66 100644
--- a/src/arch/nt64/syscall_disp.c
+++ b/src/arch/nt64/syscall_disp.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <unistd.h>
diff --git a/src/arch/nt64/unwind.c b/src/arch/nt64/unwind.c
index 4f54ed3..fa8c244 100644
--- a/src/arch/nt64/unwind.c
+++ b/src/arch/nt64/unwind.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <stdint.h>
diff --git a/src/arch/nt64/vtbl.c b/src/arch/nt64/vtbl.c
index 920144a..61f1976 100644
--- a/src/arch/nt64/vtbl.c
+++ b/src/arch/nt64/vtbl.c
@@ -1,7 +1,7 @@
/**************************************************************************/
/* 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. */
+/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
#include <unistd.h>