summaryrefslogtreecommitdiffhomepage
path: root/src
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
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')
-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
-rw-r--r--src/env/nt32/__copy_tls.c2
-rw-r--r--src/env/nt32/__reset_tls.c2
-rw-r--r--src/env/nt64/__copy_tls.c2
-rw-r--r--src/env/nt64/__reset_tls.c2
-rw-r--r--src/errno/nt32/___errno_location.s2
-rw-r--r--src/errno/nt64/___errno_location.s2
-rw-r--r--src/fcntl/nt32/posix_fadvise.c2
-rw-r--r--src/fcntl/nt64/posix_fadvise.c2
-rw-r--r--src/fenv/nt64/fenv.S2
-rw-r--r--src/internal/nt32/syscall.s2
-rw-r--r--src/internal/nt64/syscall.s2
-rw-r--r--src/ldso/nt32/dl_iterate_phdr.c2
-rw-r--r--src/ldso/nt32/dynlink.c2
-rw-r--r--src/ldso/nt32/tlsdesc.c2
-rw-r--r--src/ldso/nt64/dl_iterate_phdr.c2
-rw-r--r--src/ldso/nt64/dynlink.c2
-rw-r--r--src/ldso/nt64/tlsdesc.c2
-rw-r--r--src/misc/nt32/realpath.c2
-rw-r--r--src/misc/nt64/realpath.c2
-rw-r--r--src/network/nt32/accept.c2
-rw-r--r--src/process/nt32/vfork.c2
-rw-r--r--src/process/nt64/vfork.c2
-rw-r--r--src/setjmp/nt32/longjmp.s2
-rw-r--r--src/setjmp/nt32/setjmp.s2
-rw-r--r--src/setjmp/nt64/longjmp.s2
-rw-r--r--src/setjmp/nt64/setjmp.s2
-rw-r--r--src/signal/nt32/sigsetjmp.s2
-rw-r--r--src/signal/nt64/sigsetjmp.s2
-rw-r--r--src/stat/nt32/fchmodat.c2
-rw-r--r--src/stat/nt64/fchmodat.c2
-rw-r--r--src/stdio/nt32/__stdio_exit_needed.s2
-rw-r--r--src/stdio/nt64/__stdio_exit_needed.s2
-rw-r--r--src/thread/nt32/__set_thread_area.c2
-rw-r--r--src/thread/nt32/clone.c2
-rw-r--r--src/thread/nt32/pthread_detach.c2
-rw-r--r--src/thread/nt32/pthread_equal.c2
-rw-r--r--src/thread/nt32/pthread_self.c2
-rw-r--r--src/thread/nt32/syscall_cp.s2
-rw-r--r--src/thread/nt64/__set_thread_area.c2
-rw-r--r--src/thread/nt64/clone.c2
-rw-r--r--src/thread/nt64/pthread_detach.c2
-rw-r--r--src/thread/nt64/pthread_equal.c2
-rw-r--r--src/thread/nt64/pthread_self.c2
-rw-r--r--src/thread/nt64/syscall_cp.s2
64 files changed, 64 insertions, 64 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>
diff --git a/src/env/nt32/__copy_tls.c b/src/env/nt32/__copy_tls.c
index 1242d8f..275a33c 100644
--- a/src/env/nt32/__copy_tls.c
+++ b/src/env/nt32/__copy_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. */
/**************************************************************************/
#define _BSD_SOURCE
diff --git a/src/env/nt32/__reset_tls.c b/src/env/nt32/__reset_tls.c
index d5786f9..3ff6858 100644
--- a/src/env/nt32/__reset_tls.c
+++ b/src/env/nt32/__reset_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. */
/**************************************************************************/
#define _BSD_SOURCE
diff --git a/src/env/nt64/__copy_tls.c b/src/env/nt64/__copy_tls.c
index 1242d8f..275a33c 100644
--- a/src/env/nt64/__copy_tls.c
+++ b/src/env/nt64/__copy_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. */
/**************************************************************************/
#define _BSD_SOURCE
diff --git a/src/env/nt64/__reset_tls.c b/src/env/nt64/__reset_tls.c
index d5786f9..3ff6858 100644
--- a/src/env/nt64/__reset_tls.c
+++ b/src/env/nt64/__reset_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. */
/**************************************************************************/
#define _BSD_SOURCE
diff --git a/src/errno/nt32/___errno_location.s b/src/errno/nt32/___errno_location.s
index cc2d164..3d4712e 100644
--- a/src/errno/nt32/___errno_location.s
+++ b/src/errno/nt32/___errno_location.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. ##
############################################################################
.text
diff --git a/src/errno/nt64/___errno_location.s b/src/errno/nt64/___errno_location.s
index 091c51a..a8dd83f 100644
--- a/src/errno/nt64/___errno_location.s
+++ b/src/errno/nt64/___errno_location.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. ##
############################################################################
.text
diff --git a/src/fcntl/nt32/posix_fadvise.c b/src/fcntl/nt32/posix_fadvise.c
index 344d494..585f8d6 100644
--- a/src/fcntl/nt32/posix_fadvise.c
+++ b/src/fcntl/nt32/posix_fadvise.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 "fcntl.h"
diff --git a/src/fcntl/nt64/posix_fadvise.c b/src/fcntl/nt64/posix_fadvise.c
index 344d494..585f8d6 100644
--- a/src/fcntl/nt64/posix_fadvise.c
+++ b/src/fcntl/nt64/posix_fadvise.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 "fcntl.h"
diff --git a/src/fenv/nt64/fenv.S b/src/fenv/nt64/fenv.S
index 801db93..6e33d04 100644
--- a/src/fenv/nt64/fenv.S
+++ b/src/fenv/nt64/fenv.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. */
/**************************************************************************/
.file "fenv.S"
diff --git a/src/internal/nt32/syscall.s b/src/internal/nt32/syscall.s
index 28c3454..b8b308e 100644
--- a/src/internal/nt32/syscall.s
+++ b/src/internal/nt32/syscall.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. ##
############################################################################
.text
diff --git a/src/internal/nt64/syscall.s b/src/internal/nt64/syscall.s
index 877d0d3..50e3eb1 100644
--- a/src/internal/nt64/syscall.s
+++ b/src/internal/nt64/syscall.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. ##
############################################################################
.text
diff --git a/src/ldso/nt32/dl_iterate_phdr.c b/src/ldso/nt32/dl_iterate_phdr.c
index bc6fd16..68b99b6 100644
--- a/src/ldso/nt32/dl_iterate_phdr.c
+++ b/src/ldso/nt32/dl_iterate_phdr.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 <stddef.h>
diff --git a/src/ldso/nt32/dynlink.c b/src/ldso/nt32/dynlink.c
index 09b8b2c..b3cf3b8 100644
--- a/src/ldso/nt32/dynlink.c
+++ b/src/ldso/nt32/dynlink.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. */
/**************************************************************************/
#define _BSD_SOURCE
diff --git a/src/ldso/nt32/tlsdesc.c b/src/ldso/nt32/tlsdesc.c
index 77e05cc..eec1a77 100644
--- a/src/ldso/nt32/tlsdesc.c
+++ b/src/ldso/nt32/tlsdesc.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 <stddef.h>
diff --git a/src/ldso/nt64/dl_iterate_phdr.c b/src/ldso/nt64/dl_iterate_phdr.c
index bc6fd16..68b99b6 100644
--- a/src/ldso/nt64/dl_iterate_phdr.c
+++ b/src/ldso/nt64/dl_iterate_phdr.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 <stddef.h>
diff --git a/src/ldso/nt64/dynlink.c b/src/ldso/nt64/dynlink.c
index 09b8b2c..b3cf3b8 100644
--- a/src/ldso/nt64/dynlink.c
+++ b/src/ldso/nt64/dynlink.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. */
/**************************************************************************/
#define _BSD_SOURCE
diff --git a/src/ldso/nt64/tlsdesc.c b/src/ldso/nt64/tlsdesc.c
index 77e05cc..eec1a77 100644
--- a/src/ldso/nt64/tlsdesc.c
+++ b/src/ldso/nt64/tlsdesc.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 <stddef.h>
diff --git a/src/misc/nt32/realpath.c b/src/misc/nt32/realpath.c
index 9e8201e..fd36c3f 100644
--- a/src/misc/nt32/realpath.c
+++ b/src/misc/nt32/realpath.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 <limits.h>
diff --git a/src/misc/nt64/realpath.c b/src/misc/nt64/realpath.c
index 9e8201e..fd36c3f 100644
--- a/src/misc/nt64/realpath.c
+++ b/src/misc/nt64/realpath.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 <limits.h>
diff --git a/src/network/nt32/accept.c b/src/network/nt32/accept.c
index eda09b3..2733e00 100644
--- a/src/network/nt32/accept.c
+++ b/src/network/nt32/accept.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/socket.h>
diff --git a/src/process/nt32/vfork.c b/src/process/nt32/vfork.c
index 2bb846e..4846bd9 100644
--- a/src/process/nt32/vfork.c
+++ b/src/process/nt32/vfork.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. */
/**************************************************************************/
#define _GNU_SOURCE
diff --git a/src/process/nt64/vfork.c b/src/process/nt64/vfork.c
index 2bb846e..4846bd9 100644
--- a/src/process/nt64/vfork.c
+++ b/src/process/nt64/vfork.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. */
/**************************************************************************/
#define _GNU_SOURCE
diff --git a/src/setjmp/nt32/longjmp.s b/src/setjmp/nt32/longjmp.s
index a06ed94..63ca101 100644
--- a/src/setjmp/nt32/longjmp.s
+++ b/src/setjmp/nt32/longjmp.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. ##
############################################################################
.text
diff --git a/src/setjmp/nt32/setjmp.s b/src/setjmp/nt32/setjmp.s
index 4c86ece..ccf97f4 100644
--- a/src/setjmp/nt32/setjmp.s
+++ b/src/setjmp/nt32/setjmp.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. ##
############################################################################
.text
diff --git a/src/setjmp/nt64/longjmp.s b/src/setjmp/nt64/longjmp.s
index ad7a695..95e9db4 100644
--- a/src/setjmp/nt64/longjmp.s
+++ b/src/setjmp/nt64/longjmp.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. ##
############################################################################
.text
diff --git a/src/setjmp/nt64/setjmp.s b/src/setjmp/nt64/setjmp.s
index f08fa51..62f8a2b 100644
--- a/src/setjmp/nt64/setjmp.s
+++ b/src/setjmp/nt64/setjmp.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. ##
############################################################################
.text
diff --git a/src/signal/nt32/sigsetjmp.s b/src/signal/nt32/sigsetjmp.s
index 9fbdd08..055b12a 100644
--- a/src/signal/nt32/sigsetjmp.s
+++ b/src/signal/nt32/sigsetjmp.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. ##
############################################################################
.text
diff --git a/src/signal/nt64/sigsetjmp.s b/src/signal/nt64/sigsetjmp.s
index 0dc5bdc..b6d66be 100644
--- a/src/signal/nt64/sigsetjmp.s
+++ b/src/signal/nt64/sigsetjmp.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. ##
############################################################################
.text
diff --git a/src/stat/nt32/fchmodat.c b/src/stat/nt32/fchmodat.c
index 179267d..328da59 100644
--- a/src/stat/nt32/fchmodat.c
+++ b/src/stat/nt32/fchmodat.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/stat.h>
diff --git a/src/stat/nt64/fchmodat.c b/src/stat/nt64/fchmodat.c
index 179267d..328da59 100644
--- a/src/stat/nt64/fchmodat.c
+++ b/src/stat/nt64/fchmodat.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/stat.h>
diff --git a/src/stdio/nt32/__stdio_exit_needed.s b/src/stdio/nt32/__stdio_exit_needed.s
index cf85f7e..eb50157 100644
--- a/src/stdio/nt32/__stdio_exit_needed.s
+++ b/src/stdio/nt32/__stdio_exit_needed.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. ##
############################################################################
.text
diff --git a/src/stdio/nt64/__stdio_exit_needed.s b/src/stdio/nt64/__stdio_exit_needed.s
index 1f98c0a..fa11b31 100644
--- a/src/stdio/nt64/__stdio_exit_needed.s
+++ b/src/stdio/nt64/__stdio_exit_needed.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. ##
############################################################################
.text
diff --git a/src/thread/nt32/__set_thread_area.c b/src/thread/nt32/__set_thread_area.c
index 834067a..c1a6888 100644
--- a/src/thread/nt32/__set_thread_area.c
+++ b/src/thread/nt32/__set_thread_area.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 <errno.h>
diff --git a/src/thread/nt32/clone.c b/src/thread/nt32/clone.c
index a35b9db..b47a7aa 100644
--- a/src/thread/nt32/clone.c
+++ b/src/thread/nt32/clone.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. */
/**************************************************************************/
#define _GNU_SOURCE
diff --git a/src/thread/nt32/pthread_detach.c b/src/thread/nt32/pthread_detach.c
index a3cf1d7..e9d3e84 100644
--- a/src/thread/nt32/pthread_detach.c
+++ b/src/thread/nt32/pthread_detach.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 "../thread/pthread_detach.c"
diff --git a/src/thread/nt32/pthread_equal.c b/src/thread/nt32/pthread_equal.c
index 0e5c681..a1b3484 100644
--- a/src/thread/nt32/pthread_equal.c
+++ b/src/thread/nt32/pthread_equal.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 "../thread/pthread_equal.c"
diff --git a/src/thread/nt32/pthread_self.c b/src/thread/nt32/pthread_self.c
index 72daa4a..ed913e8 100644
--- a/src/thread/nt32/pthread_self.c
+++ b/src/thread/nt32/pthread_self.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/thread/nt32/syscall_cp.s b/src/thread/nt32/syscall_cp.s
index 06eafa4..6dd0658 100644
--- a/src/thread/nt32/syscall_cp.s
+++ b/src/thread/nt32/syscall_cp.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. ##
############################################################################
.text
diff --git a/src/thread/nt64/__set_thread_area.c b/src/thread/nt64/__set_thread_area.c
index 834067a..c1a6888 100644
--- a/src/thread/nt64/__set_thread_area.c
+++ b/src/thread/nt64/__set_thread_area.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 <errno.h>
diff --git a/src/thread/nt64/clone.c b/src/thread/nt64/clone.c
index 8d9ca5f..f9a2777 100644
--- a/src/thread/nt64/clone.c
+++ b/src/thread/nt64/clone.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. */
/**************************************************************************/
#define _GNU_SOURCE
diff --git a/src/thread/nt64/pthread_detach.c b/src/thread/nt64/pthread_detach.c
index a3cf1d7..e9d3e84 100644
--- a/src/thread/nt64/pthread_detach.c
+++ b/src/thread/nt64/pthread_detach.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 "../thread/pthread_detach.c"
diff --git a/src/thread/nt64/pthread_equal.c b/src/thread/nt64/pthread_equal.c
index 0e5c681..a1b3484 100644
--- a/src/thread/nt64/pthread_equal.c
+++ b/src/thread/nt64/pthread_equal.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 "../thread/pthread_equal.c"
diff --git a/src/thread/nt64/pthread_self.c b/src/thread/nt64/pthread_self.c
index 72daa4a..ed913e8 100644
--- a/src/thread/nt64/pthread_self.c
+++ b/src/thread/nt64/pthread_self.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/thread/nt64/syscall_cp.s b/src/thread/nt64/syscall_cp.s
index 438acbe..1bfe081 100644
--- a/src/thread/nt64/syscall_cp.s
+++ b/src/thread/nt64/syscall_cp.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. ##
############################################################################
.text