aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc')
-rw-r--r--src/alloc/alloc.c6
-rw-r--r--src/alloc/calloc.c6
-rw-r--r--src/alloc/free.c6
-rw-r--r--src/alloc/malloc.c6
-rw-r--r--src/alloc/memdup.c6
-rw-r--r--src/alloc/realloc.c6
6 files changed, 36 insertions, 0 deletions
diff --git a/src/alloc/alloc.c b/src/alloc/alloc.c
index 0ff8ff4..b809956 100644
--- a/src/alloc/alloc.c
+++ b/src/alloc/alloc.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2023 Marc Pervaz Boocha
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <alloc.h>
#include <stdlib.h>
diff --git a/src/alloc/calloc.c b/src/alloc/calloc.c
index 666e0ba..a1a567c 100644
--- a/src/alloc/calloc.c
+++ b/src/alloc/calloc.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2023 Marc Pervaz Boocha
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <alloc.h>
#include <mem.h>
diff --git a/src/alloc/free.c b/src/alloc/free.c
index ef2654d..90d16d5 100644
--- a/src/alloc/free.c
+++ b/src/alloc/free.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2023 Marc Pervaz Boocha
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <alloc.h>
extern inline void calt_free(void *ptr);
diff --git a/src/alloc/malloc.c b/src/alloc/malloc.c
index 9a2e81d..3abcf2e 100644
--- a/src/alloc/malloc.c
+++ b/src/alloc/malloc.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2023 Marc Pervaz Boocha
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <alloc.h>
extern inline void *calt_malloc(size_t size);
diff --git a/src/alloc/memdup.c b/src/alloc/memdup.c
index 60aa35e..dd58856 100644
--- a/src/alloc/memdup.c
+++ b/src/alloc/memdup.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2023 Marc Pervaz Boocha
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <alloc.h>
#include <mem.h>
diff --git a/src/alloc/realloc.c b/src/alloc/realloc.c
index 490ba75..0bb1280 100644
--- a/src/alloc/realloc.c
+++ b/src/alloc/realloc.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2023 Marc Pervaz Boocha
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <alloc.h>
#include <mem.h>