aboutsummaryrefslogtreecommitdiffstats
path: root/src/malloc
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2024-10-06 09:15:45 +0200
committerMattias Andrée <m@maandree.se>2024-10-06 09:15:45 +0200
commita154fb3467c8a1e46e4dc03cf86c26b22d4021af (patch)
tree7774f50cf6f9ab3cca0214703489094694222184 /src/malloc
parentEmpty signed commit (diff)
downloadslibc-a154fb3467c8a1e46e4dc03cf86c26b22d4021af.tar.gz
slibc-a154fb3467c8a1e46e4dc03cf86c26b22d4021af.tar.bz2
slibc-a154fb3467c8a1e46e4dc03cf86c26b22d4021af.tar.xz
Update e-mailHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-rw-r--r--src/malloc.c2
-rw-r--r--src/malloc/aligned_alloc.c2
-rw-r--r--src/malloc/cfree.c2
-rw-r--r--src/malloc/free.c2
-rw-r--r--src/malloc/malloc_usable_size.c2
-rw-r--r--src/malloc/posix_memalign.c2
-rw-r--r--src/malloc/realloc.c2
7 files changed, 7 insertions, 7 deletions
diff --git a/src/malloc.c b/src/malloc.c
index 694f8c4..e1f5a07 100644
--- a/src/malloc.c
+++ b/src/malloc.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/malloc/aligned_alloc.c b/src/malloc/aligned_alloc.c
index 0b19dc7..816f66b 100644
--- a/src/malloc/aligned_alloc.c
+++ b/src/malloc/aligned_alloc.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/malloc/cfree.c b/src/malloc/cfree.c
index 098f9ff..938cc48 100644
--- a/src/malloc/cfree.c
+++ b/src/malloc/cfree.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/malloc/free.c b/src/malloc/free.c
index 3a0ba5a..dcbe403 100644
--- a/src/malloc/free.c
+++ b/src/malloc/free.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/malloc/malloc_usable_size.c b/src/malloc/malloc_usable_size.c
index d44f11e..dab59ce 100644
--- a/src/malloc/malloc_usable_size.c
+++ b/src/malloc/malloc_usable_size.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/malloc/posix_memalign.c b/src/malloc/posix_memalign.c
index 80d27c8..20a6d0f 100644
--- a/src/malloc/posix_memalign.c
+++ b/src/malloc/posix_memalign.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/malloc/realloc.c b/src/malloc/realloc.c
index 4356c2a..f52e8f2 100644
--- a/src/malloc/realloc.c
+++ b/src/malloc/realloc.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by