summaryrefslogtreecommitdiffhomepage
path: root/crt
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2023-12-23 21:17:35 +0000
committermidipix <writeonce@midipix.org>2023-12-23 21:17:35 +0000
commit716654e8dd98767010ab4bc3967bf95496f97859 (patch)
tree010bedb58a166072dac573d5169bd658c8f67c7a /crt
parent965dca42ea74b4d6c5bbd779e37e7fd758de1cfc (diff)
downloadmmglue-716654e8dd98767010ab4bc3967bf95496f97859.tar.bz2
mmglue-716654e8dd98767010ab4bc3967bf95496f97859.tar.xz
add copyright notice to C and Assembly translation units where applicable.
Diffstat (limited to 'crt')
-rw-r--r--crt/nt32/Scrt1.c6
-rw-r--r--crt/nt32/Scrtldso.c6
-rw-r--r--crt/nt32/Scrtvrfs.c6
-rw-r--r--crt/nt32/crt1.c6
-rw-r--r--crt/nt32/crtdinga.c6
-rw-r--r--crt/nt32/crte.s6
-rw-r--r--crt/nt32/crti.s6
-rw-r--r--crt/nt32/crtidata.c6
-rw-r--r--crt/nt32/crtldso.c6
-rw-r--r--crt/nt32/crtn.s6
-rw-r--r--crt/nt32/crtposix.c6
-rw-r--r--crt/nt32/crtvrfs.c6
-rw-r--r--crt/nt64/Scrt1.c6
-rw-r--r--crt/nt64/Scrtldso.c6
-rw-r--r--crt/nt64/Scrtvrfs.c6
-rw-r--r--crt/nt64/crt1.c6
-rw-r--r--crt/nt64/crtdinga.c6
-rw-r--r--crt/nt64/crte.s6
-rw-r--r--crt/nt64/crtend.s6
-rw-r--r--crt/nt64/crti.s6
-rw-r--r--crt/nt64/crtidata.c6
-rw-r--r--crt/nt64/crtldso.c6
-rw-r--r--crt/nt64/crtn.s6
-rw-r--r--crt/nt64/crtposix.c6
-rw-r--r--crt/nt64/crtvrfs.c6
25 files changed, 150 insertions, 0 deletions
diff --git a/crt/nt32/Scrt1.c b/crt/nt32/Scrt1.c
index 6a0c031..c8633fa 100644
--- a/crt/nt32/Scrt1.c
+++ b/crt/nt32/Scrt1.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
/****************************************/
/* statically linked applications only */
/* see also: crtidata.c */
diff --git a/crt/nt32/Scrtldso.c b/crt/nt32/Scrtldso.c
index e486a93..f1ef645 100644
--- a/crt/nt32/Scrtldso.c
+++ b/crt/nt32/Scrtldso.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "crtinit.h"
diff --git a/crt/nt32/Scrtvrfs.c b/crt/nt32/Scrtvrfs.c
index c5e483a..2f34aa4 100644
--- a/crt/nt32/Scrtvrfs.c
+++ b/crt/nt32/Scrtvrfs.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "crtinit.h"
diff --git a/crt/nt32/crt1.c b/crt/nt32/crt1.c
index 3b49915..d08eea8 100644
--- a/crt/nt32/crt1.c
+++ b/crt/nt32/crt1.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include "crtinit.h"
static const int __disabled = 0;
diff --git a/crt/nt32/crtdinga.c b/crt/nt32/crtdinga.c
index 6a2b737..a37b86d 100644
--- a/crt/nt32/crtdinga.c
+++ b/crt/nt32/crtdinga.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "crtinit.h"
diff --git a/crt/nt32/crte.s b/crt/nt32/crte.s
index 0f7ef82..2e016dc 100644
--- a/crt/nt32/crte.s
+++ b/crt/nt32/crte.s
@@ -1,3 +1,9 @@
+############################################################################
+## mmglue: midipix architecture- and target-specific bits for musl libc ##
+## Copyright (C) 2013--2023 SysDeer Technologies, LLC ##
+## Released under the Standard MIT License; see COPYING.MMGLUE. ##
+############################################################################
+
.text
.globl __so_entry_point
__so_entry_point:
diff --git a/crt/nt32/crti.s b/crt/nt32/crti.s
index b207641..4bd52f1 100644
--- a/crt/nt32/crti.s
+++ b/crt/nt32/crti.s
@@ -1,3 +1,9 @@
+############################################################################
+## mmglue: midipix architecture- and target-specific bits for musl libc ##
+## Copyright (C) 2013--2023 SysDeer Technologies, LLC ##
+## Released under the Standard MIT License; see COPYING.MMGLUE. ##
+############################################################################
+
.section .midipix
.ascii "e35ed272"
.ascii "9e55"
diff --git a/crt/nt32/crtidata.c b/crt/nt32/crtidata.c
index 12db9d3..8b96ff1 100644
--- a/crt/nt32/crtidata.c
+++ b/crt/nt32/crtidata.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
/****************************************/
/* dynamically linked applications only */
/* see also: Scrt1.c */
diff --git a/crt/nt32/crtldso.c b/crt/nt32/crtldso.c
index 84b8207..f824053 100644
--- a/crt/nt32/crtldso.c
+++ b/crt/nt32/crtldso.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "crtinit.h"
diff --git a/crt/nt32/crtn.s b/crt/nt32/crtn.s
index 752429b..955ebf8 100644
--- a/crt/nt32/crtn.s
+++ b/crt/nt32/crtn.s
@@ -1,3 +1,9 @@
+############################################################################
+## mmglue: midipix architecture- and target-specific bits for musl libc ##
+## Copyright (C) 2013--2023 SysDeer Technologies, LLC ##
+## Released under the Standard MIT License; see COPYING.MMGLUE. ##
+############################################################################
+
.text
.globl ___chkstk_ms
diff --git a/crt/nt32/crtposix.c b/crt/nt32/crtposix.c
index 498d301..07f581b 100644
--- a/crt/nt32/crtposix.c
+++ b/crt/nt32/crtposix.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "crtinit.h"
diff --git a/crt/nt32/crtvrfs.c b/crt/nt32/crtvrfs.c
index 7a529f3..ffe3600 100644
--- a/crt/nt32/crtvrfs.c
+++ b/crt/nt32/crtvrfs.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "crtinit.h"
diff --git a/crt/nt64/Scrt1.c b/crt/nt64/Scrt1.c
index 6a0c031..c8633fa 100644
--- a/crt/nt64/Scrt1.c
+++ b/crt/nt64/Scrt1.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
/****************************************/
/* statically linked applications only */
/* see also: crtidata.c */
diff --git a/crt/nt64/Scrtldso.c b/crt/nt64/Scrtldso.c
index e486a93..f1ef645 100644
--- a/crt/nt64/Scrtldso.c
+++ b/crt/nt64/Scrtldso.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "crtinit.h"
diff --git a/crt/nt64/Scrtvrfs.c b/crt/nt64/Scrtvrfs.c
index c5e483a..2f34aa4 100644
--- a/crt/nt64/Scrtvrfs.c
+++ b/crt/nt64/Scrtvrfs.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "crtinit.h"
diff --git a/crt/nt64/crt1.c b/crt/nt64/crt1.c
index 3b49915..d08eea8 100644
--- a/crt/nt64/crt1.c
+++ b/crt/nt64/crt1.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include "crtinit.h"
static const int __disabled = 0;
diff --git a/crt/nt64/crtdinga.c b/crt/nt64/crtdinga.c
index 6a2b737..a37b86d 100644
--- a/crt/nt64/crtdinga.c
+++ b/crt/nt64/crtdinga.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "crtinit.h"
diff --git a/crt/nt64/crte.s b/crt/nt64/crte.s
index cdfd8a1..1db8f44 100644
--- a/crt/nt64/crte.s
+++ b/crt/nt64/crte.s
@@ -1,3 +1,9 @@
+############################################################################
+## mmglue: midipix architecture- and target-specific bits for musl libc ##
+## Copyright (C) 2013--2023 SysDeer Technologies, LLC ##
+## Released under the Standard MIT License; see COPYING.MMGLUE. ##
+############################################################################
+
.text
.globl __so_entry_point
__so_entry_point:
diff --git a/crt/nt64/crtend.s b/crt/nt64/crtend.s
index 147781a..09eb510 100644
--- a/crt/nt64/crtend.s
+++ b/crt/nt64/crtend.s
@@ -1,3 +1,9 @@
+############################################################################
+## mmglue: midipix architecture- and target-specific bits for musl libc ##
+## Copyright (C) 2013--2023 SysDeer Technologies, LLC ##
+## Released under the Standard MIT License; see COPYING.MMGLUE. ##
+############################################################################
+
.file "crtend.s"
.cfi_sections .debug_frame
diff --git a/crt/nt64/crti.s b/crt/nt64/crti.s
index 9fe0b69..a96db1c 100644
--- a/crt/nt64/crti.s
+++ b/crt/nt64/crti.s
@@ -1,3 +1,9 @@
+############################################################################
+## mmglue: midipix architecture- and target-specific bits for musl libc ##
+## Copyright (C) 2013--2023 SysDeer Technologies, LLC ##
+## Released under the Standard MIT License; see COPYING.MMGLUE. ##
+############################################################################
+
.section .midipix
.ascii "e35ed272"
.ascii "9e55"
diff --git a/crt/nt64/crtidata.c b/crt/nt64/crtidata.c
index 12db9d3..8b96ff1 100644
--- a/crt/nt64/crtidata.c
+++ b/crt/nt64/crtidata.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
/****************************************/
/* dynamically linked applications only */
/* see also: Scrt1.c */
diff --git a/crt/nt64/crtldso.c b/crt/nt64/crtldso.c
index 84b8207..f824053 100644
--- a/crt/nt64/crtldso.c
+++ b/crt/nt64/crtldso.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "crtinit.h"
diff --git a/crt/nt64/crtn.s b/crt/nt64/crtn.s
index bb31c67..c4d8887 100644
--- a/crt/nt64/crtn.s
+++ b/crt/nt64/crtn.s
@@ -1,3 +1,9 @@
+############################################################################
+## mmglue: midipix architecture- and target-specific bits for musl libc ##
+## Copyright (C) 2013--2023 SysDeer Technologies, LLC ##
+## Released under the Standard MIT License; see COPYING.MMGLUE. ##
+############################################################################
+
.text
.globl ___chkstk_ms
diff --git a/crt/nt64/crtposix.c b/crt/nt64/crtposix.c
index 498d301..07f581b 100644
--- a/crt/nt64/crtposix.c
+++ b/crt/nt64/crtposix.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "crtinit.h"
diff --git a/crt/nt64/crtvrfs.c b/crt/nt64/crtvrfs.c
index 7a529f3..ffe3600 100644
--- a/crt/nt64/crtvrfs.c
+++ b/crt/nt64/crtvrfs.c
@@ -1,3 +1,9 @@
+/**************************************************************************/
+/* mmglue: midipix architecture- and target-specific bits for musl libc */
+/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
+/* Released under the Standard MIT License; see COPYING.MMGLUE. */
+/**************************************************************************/
+
#include <unistd.h>
#include <stdint.h>
#include "crtinit.h"