From 000ff78bcc152cc59d12b5b779abb82d20bd9cab Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 14 Apr 2024 19:11:00 +0000 Subject: Code base: updated all translation units to match the project's COPYING file. --- crt/nt32/Scrt1.c | 2 +- crt/nt32/Scrtldso.c | 2 +- crt/nt32/Scrtvrfs.c | 2 +- crt/nt32/crt1.c | 2 +- crt/nt32/crtdinga.c | 2 +- crt/nt32/crte.s | 2 +- crt/nt32/crti.s | 2 +- crt/nt32/crtidata.c | 2 +- crt/nt32/crtldso.c | 2 +- crt/nt32/crtn.s | 2 +- crt/nt32/crtposix.c | 2 +- crt/nt32/crtvrfs.c | 2 +- crt/nt64/Scrt1.c | 2 +- crt/nt64/Scrtldso.c | 2 +- crt/nt64/Scrtvrfs.c | 2 +- crt/nt64/crt1.c | 2 +- crt/nt64/crtdinga.c | 2 +- crt/nt64/crte.s | 2 +- crt/nt64/crtend.s | 2 +- crt/nt64/crti.s | 2 +- crt/nt64/crtidata.c | 2 +- crt/nt64/crtldso.c | 2 +- crt/nt64/crtn.s | 2 +- crt/nt64/crtposix.c | 2 +- crt/nt64/crtvrfs.c | 2 +- src/arch/nt32/_dlstart.c | 2 +- src/arch/nt32/cmd.c | 2 +- src/arch/nt32/crt_glue.c | 2 +- src/arch/nt32/crt_pe.c | 2 +- src/arch/nt32/crt_tls.c | 2 +- src/arch/nt32/debug.c | 2 +- src/arch/nt32/fs.c | 2 +- src/arch/nt32/nt32/chelper.S | 2 +- src/arch/nt32/syscall_disp.c | 2 +- src/arch/nt32/vtbl.c | 2 +- src/arch/nt64/_dlstart.c | 2 +- src/arch/nt64/cmd.c | 2 +- src/arch/nt64/crt_glue.c | 2 +- src/arch/nt64/crt_pe.c | 2 +- src/arch/nt64/crt_tls.c | 2 +- src/arch/nt64/debug.c | 2 +- src/arch/nt64/fs.c | 2 +- src/arch/nt64/syscall_disp.c | 2 +- src/arch/nt64/unwind.c | 2 +- src/arch/nt64/vtbl.c | 2 +- src/env/nt32/__copy_tls.c | 2 +- src/env/nt32/__reset_tls.c | 2 +- src/env/nt64/__copy_tls.c | 2 +- src/env/nt64/__reset_tls.c | 2 +- src/errno/nt32/___errno_location.s | 2 +- src/errno/nt64/___errno_location.s | 2 +- src/fcntl/nt32/posix_fadvise.c | 2 +- src/fcntl/nt64/posix_fadvise.c | 2 +- src/fenv/nt64/fenv.S | 2 +- src/internal/nt32/syscall.s | 2 +- src/internal/nt64/syscall.s | 2 +- src/ldso/nt32/dl_iterate_phdr.c | 2 +- src/ldso/nt32/dynlink.c | 2 +- src/ldso/nt32/tlsdesc.c | 2 +- src/ldso/nt64/dl_iterate_phdr.c | 2 +- src/ldso/nt64/dynlink.c | 2 +- src/ldso/nt64/tlsdesc.c | 2 +- src/misc/nt32/realpath.c | 2 +- src/misc/nt64/realpath.c | 2 +- src/network/nt32/accept.c | 2 +- src/process/nt32/vfork.c | 2 +- src/process/nt64/vfork.c | 2 +- src/setjmp/nt32/longjmp.s | 2 +- src/setjmp/nt32/setjmp.s | 2 +- src/setjmp/nt64/longjmp.s | 2 +- src/setjmp/nt64/setjmp.s | 2 +- src/signal/nt32/sigsetjmp.s | 2 +- src/signal/nt64/sigsetjmp.s | 2 +- src/stat/nt32/fchmodat.c | 2 +- src/stat/nt64/fchmodat.c | 2 +- src/stdio/nt32/__stdio_exit_needed.s | 2 +- src/stdio/nt64/__stdio_exit_needed.s | 2 +- src/thread/nt32/__set_thread_area.c | 2 +- src/thread/nt32/clone.c | 2 +- src/thread/nt32/pthread_detach.c | 2 +- src/thread/nt32/pthread_equal.c | 2 +- src/thread/nt32/pthread_self.c | 2 +- src/thread/nt32/syscall_cp.s | 2 +- src/thread/nt64/__set_thread_area.c | 2 +- src/thread/nt64/clone.c | 2 +- src/thread/nt64/pthread_detach.c | 2 +- src/thread/nt64/pthread_equal.c | 2 +- src/thread/nt64/pthread_self.c | 2 +- src/thread/nt64/syscall_cp.s | 2 +- 89 files changed, 89 insertions(+), 89 deletions(-) diff --git a/crt/nt32/Scrt1.c b/crt/nt32/Scrt1.c index c8633fa..dd0b1c6 100644 --- a/crt/nt32/Scrt1.c +++ b/crt/nt32/Scrt1.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. */ /**************************************************************************/ /****************************************/ diff --git a/crt/nt32/Scrtldso.c b/crt/nt32/Scrtldso.c index f1ef645..532317b 100644 --- a/crt/nt32/Scrtldso.c +++ b/crt/nt32/Scrtldso.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 diff --git a/crt/nt32/Scrtvrfs.c b/crt/nt32/Scrtvrfs.c index 2f34aa4..dc3cb76 100644 --- a/crt/nt32/Scrtvrfs.c +++ b/crt/nt32/Scrtvrfs.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 diff --git a/crt/nt32/crt1.c b/crt/nt32/crt1.c index d08eea8..48f5774 100644 --- a/crt/nt32/crt1.c +++ b/crt/nt32/crt1.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 "crtinit.h" diff --git a/crt/nt32/crtdinga.c b/crt/nt32/crtdinga.c index a37b86d..0f4b2ff 100644 --- a/crt/nt32/crtdinga.c +++ b/crt/nt32/crtdinga.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 diff --git a/crt/nt32/crte.s b/crt/nt32/crte.s index 2e016dc..aef6b1f 100644 --- a/crt/nt32/crte.s +++ b/crt/nt32/crte.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/crt/nt32/crti.s b/crt/nt32/crti.s index 4bd52f1..7de6ada 100644 --- a/crt/nt32/crti.s +++ b/crt/nt32/crti.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. ## ############################################################################ .section .midipix diff --git a/crt/nt32/crtidata.c b/crt/nt32/crtidata.c index 8b96ff1..06b3458 100644 --- a/crt/nt32/crtidata.c +++ b/crt/nt32/crtidata.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. */ /**************************************************************************/ /****************************************/ diff --git a/crt/nt32/crtldso.c b/crt/nt32/crtldso.c index f824053..e76431e 100644 --- a/crt/nt32/crtldso.c +++ b/crt/nt32/crtldso.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 diff --git a/crt/nt32/crtn.s b/crt/nt32/crtn.s index 955ebf8..ccc9efd 100644 --- a/crt/nt32/crtn.s +++ b/crt/nt32/crtn.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/crt/nt32/crtposix.c b/crt/nt32/crtposix.c index 07f581b..4556588 100644 --- a/crt/nt32/crtposix.c +++ b/crt/nt32/crtposix.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 diff --git a/crt/nt32/crtvrfs.c b/crt/nt32/crtvrfs.c index ffe3600..f606205 100644 --- a/crt/nt32/crtvrfs.c +++ b/crt/nt32/crtvrfs.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 diff --git a/crt/nt64/Scrt1.c b/crt/nt64/Scrt1.c index c8633fa..dd0b1c6 100644 --- a/crt/nt64/Scrt1.c +++ b/crt/nt64/Scrt1.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. */ /**************************************************************************/ /****************************************/ diff --git a/crt/nt64/Scrtldso.c b/crt/nt64/Scrtldso.c index f1ef645..532317b 100644 --- a/crt/nt64/Scrtldso.c +++ b/crt/nt64/Scrtldso.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 diff --git a/crt/nt64/Scrtvrfs.c b/crt/nt64/Scrtvrfs.c index 2f34aa4..dc3cb76 100644 --- a/crt/nt64/Scrtvrfs.c +++ b/crt/nt64/Scrtvrfs.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 diff --git a/crt/nt64/crt1.c b/crt/nt64/crt1.c index d08eea8..48f5774 100644 --- a/crt/nt64/crt1.c +++ b/crt/nt64/crt1.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 "crtinit.h" diff --git a/crt/nt64/crtdinga.c b/crt/nt64/crtdinga.c index a37b86d..0f4b2ff 100644 --- a/crt/nt64/crtdinga.c +++ b/crt/nt64/crtdinga.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 diff --git a/crt/nt64/crte.s b/crt/nt64/crte.s index 1db8f44..3999da5 100644 --- a/crt/nt64/crte.s +++ b/crt/nt64/crte.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/crt/nt64/crtend.s b/crt/nt64/crtend.s index 09eb510..87eee98 100644 --- a/crt/nt64/crtend.s +++ b/crt/nt64/crtend.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 "crtend.s" diff --git a/crt/nt64/crti.s b/crt/nt64/crti.s index a96db1c..d20b9a0 100644 --- a/crt/nt64/crti.s +++ b/crt/nt64/crti.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. ## ############################################################################ .section .midipix diff --git a/crt/nt64/crtidata.c b/crt/nt64/crtidata.c index 8b96ff1..06b3458 100644 --- a/crt/nt64/crtidata.c +++ b/crt/nt64/crtidata.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. */ /**************************************************************************/ /****************************************/ diff --git a/crt/nt64/crtldso.c b/crt/nt64/crtldso.c index f824053..e76431e 100644 --- a/crt/nt64/crtldso.c +++ b/crt/nt64/crtldso.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 diff --git a/crt/nt64/crtn.s b/crt/nt64/crtn.s index c4d8887..f7d9a84 100644 --- a/crt/nt64/crtn.s +++ b/crt/nt64/crtn.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/crt/nt64/crtposix.c b/crt/nt64/crtposix.c index 07f581b..4556588 100644 --- a/crt/nt64/crtposix.c +++ b/crt/nt64/crtposix.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 diff --git a/crt/nt64/crtvrfs.c b/crt/nt64/crtvrfs.c index ffe3600..f606205 100644 --- a/crt/nt64/crtvrfs.c +++ b/crt/nt64/crtvrfs.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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 -- cgit v1.2.3