summaryrefslogtreecommitdiff
path: root/libc/malloc
diff options
context:
space:
mode:
Diffstat (limited to 'libc/malloc')
-rw-r--r--libc/malloc/Makefile5
-rw-r--r--libc/malloc/arena.c5
-rw-r--r--libc/malloc/hooks.c5
-rw-r--r--libc/malloc/malloc.c5
-rw-r--r--libc/malloc/malloc.h5
-rw-r--r--libc/malloc/mcheck-init.c5
-rw-r--r--libc/malloc/mcheck.c5
-rw-r--r--libc/malloc/mcheck.h5
-rw-r--r--libc/malloc/memusage.c5
-rwxr-xr-xlibc/malloc/memusage.sh5
-rw-r--r--libc/malloc/memusagestat.c3
-rw-r--r--libc/malloc/morecore.c5
-rw-r--r--libc/malloc/mtrace.c5
-rw-r--r--libc/malloc/mtrace.pl5
-rw-r--r--libc/malloc/obstack.c5
-rw-r--r--libc/malloc/obstack.h5
-rw-r--r--libc/malloc/set-freeres.c5
-rw-r--r--libc/malloc/thread-freeres.c5
-rw-r--r--libc/malloc/tst-calloc.c5
-rw-r--r--libc/malloc/tst-malloc.c5
-rw-r--r--libc/malloc/tst-mallocstate.c5
-rw-r--r--libc/malloc/tst-mcheck.c5
-rw-r--r--libc/malloc/tst-mtrace.c5
-rwxr-xr-xlibc/malloc/tst-mtrace.sh5
24 files changed, 47 insertions, 71 deletions
diff --git a/libc/malloc/Makefile b/libc/malloc/Makefile
index f15975b36..3ffaba745 100644
--- a/libc/malloc/Makefile
+++ b/libc/malloc/Makefile
@@ -13,9 +13,8 @@
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
-# License along with the GNU C Library; if not, write to the Free
-# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-# 02111-1307 USA.
+# License along with the GNU C Library; if not, see
+# <http://www.gnu.org/licenses/>.
#
# Makefile for malloc routines
diff --git a/libc/malloc/arena.c b/libc/malloc/arena.c
index 24c11f225..33c4ff37a 100644
--- a/libc/malloc/arena.c
+++ b/libc/malloc/arena.c
@@ -15,9 +15,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; see the file COPYING.LIB. If not,
- write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA. */
+ License along with the GNU C Library; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#include <stdbool.h>
diff --git a/libc/malloc/hooks.c b/libc/malloc/hooks.c
index 2414d7dda..8a34c7848 100644
--- a/libc/malloc/hooks.c
+++ b/libc/malloc/hooks.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; see the file COPYING.LIB. If not,
- write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA. */
+ License along with the GNU C Library; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
/* What to do if the standard debugging hooks are in place and a
corrupt pointer is detected: do nothing (0), print an error message
diff --git a/libc/malloc/malloc.c b/libc/malloc/malloc.c
index d8df9c776..d7d79e03f 100644
--- a/libc/malloc/malloc.c
+++ b/libc/malloc/malloc.c
@@ -15,9 +15,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; see the file COPYING.LIB. If not,
- write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA. */
+ License along with the GNU C Library; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
/*
This is a version (aka ptmalloc2) of malloc/free/realloc written by
diff --git a/libc/malloc/malloc.h b/libc/malloc/malloc.h
index eb63afb6c..02b28c78e 100644
--- a/libc/malloc/malloc.h
+++ b/libc/malloc/malloc.h
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _MALLOC_H
#define _MALLOC_H 1
diff --git a/libc/malloc/mcheck-init.c b/libc/malloc/mcheck-init.c
index b6354cafa..80ad1ff7d 100644
--- a/libc/malloc/mcheck-init.c
+++ b/libc/malloc/mcheck-init.c
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
/* The object of this file should be installed as libmcheck.a,
so one can do -lmcheck to turn on mcheck. */
diff --git a/libc/malloc/mcheck.c b/libc/malloc/mcheck.c
index a3dd1c42a..921374036 100644
--- a/libc/malloc/mcheck.c
+++ b/libc/malloc/mcheck.c
@@ -15,9 +15,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _MALLOC_INTERNAL
# define _MALLOC_INTERNAL
diff --git a/libc/malloc/mcheck.h b/libc/malloc/mcheck.h
index 462b944af..208cb4338 100644
--- a/libc/malloc/mcheck.h
+++ b/libc/malloc/mcheck.h
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _MCHECK_H
#define _MCHECK_H 1
diff --git a/libc/malloc/memusage.c b/libc/malloc/memusage.c
index 68f9a3d98..b3a96dcff 100644
--- a/libc/malloc/memusage.c
+++ b/libc/malloc/memusage.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <atomic.h>
diff --git a/libc/malloc/memusage.sh b/libc/malloc/memusage.sh
index 7a389a1b0..90140c180 100755
--- a/libc/malloc/memusage.sh
+++ b/libc/malloc/memusage.sh
@@ -14,9 +14,8 @@
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
-# License along with the GNU C Library; if not, write to the Free
-# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-# 02111-1307 USA.
+# License along with the GNU C Library; if not, see
+# <http://www.gnu.org/licenses/>.
memusageso='@SLIBDIR@/libmemusage.so'
memusagestat='@BINDIR@/memusagestat'
diff --git a/libc/malloc/memusagestat.c b/libc/malloc/memusagestat.c
index c1e55f7da..a609a9b7c 100644
--- a/libc/malloc/memusagestat.c
+++ b/libc/malloc/memusagestat.c
@@ -15,8 +15,7 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#define _FILE_OFFSET_BITS 64
diff --git a/libc/malloc/morecore.c b/libc/malloc/morecore.c
index 0a66ef5a8..8a72ba6a3 100644
--- a/libc/malloc/morecore.c
+++ b/libc/malloc/morecore.c
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _MALLOC_INTERNAL
#define _MALLOC_INTERNAL
diff --git a/libc/malloc/mtrace.c b/libc/malloc/mtrace.c
index d0fdf2302..67e3e4433 100644
--- a/libc/malloc/mtrace.c
+++ b/libc/malloc/mtrace.c
@@ -15,9 +15,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _MALLOC_INTERNAL
#define _MALLOC_INTERNAL
diff --git a/libc/malloc/mtrace.pl b/libc/malloc/mtrace.pl
index 2a21e7ac0..adf61c737 100644
--- a/libc/malloc/mtrace.pl
+++ b/libc/malloc/mtrace.pl
@@ -17,9 +17,8 @@ eval "exec @PERL@ -S $0 $@"
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
-# License along with the GNU C Library; if not, write to the Free
-# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-# 02111-1307 USA.
+# License along with the GNU C Library; if not, see
+# <http://www.gnu.org/licenses/>.
$VERSION = "@VERSION@";
$PKGVERSION = "@PKGVERSION@";
diff --git a/libc/malloc/obstack.c b/libc/malloc/obstack.c
index 75440d9c7..5786da0aa 100644
--- a/libc/malloc/obstack.c
+++ b/libc/malloc/obstack.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifdef HAVE_CONFIG_H
diff --git a/libc/malloc/obstack.h b/libc/malloc/obstack.h
index 096385663..a791823cf 100644
--- a/libc/malloc/obstack.h
+++ b/libc/malloc/obstack.h
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
/* Summary:
diff --git a/libc/malloc/set-freeres.c b/libc/malloc/set-freeres.c
index dfd4641a7..02e7ae607 100644
--- a/libc/malloc/set-freeres.c
+++ b/libc/malloc/set-freeres.c
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <atomic.h>
#include <stdlib.h>
diff --git a/libc/malloc/thread-freeres.c b/libc/malloc/thread-freeres.c
index cc9db3920..89fd828d9 100644
--- a/libc/malloc/thread-freeres.c
+++ b/libc/malloc/thread-freeres.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <stdlib.h>
#include <libc-internal.h>
diff --git a/libc/malloc/tst-calloc.c b/libc/malloc/tst-calloc.c
index b3594c937..6383363e5 100644
--- a/libc/malloc/tst-calloc.c
+++ b/libc/malloc/tst-calloc.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <error.h>
diff --git a/libc/malloc/tst-malloc.c b/libc/malloc/tst-malloc.c
index 81d279236..d564f9aa4 100644
--- a/libc/malloc/tst-malloc.c
+++ b/libc/malloc/tst-malloc.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <malloc.h>
diff --git a/libc/malloc/tst-mallocstate.c b/libc/malloc/tst-mallocstate.c
index 97a10586d..44a35eccd 100644
--- a/libc/malloc/tst-mallocstate.c
+++ b/libc/malloc/tst-mallocstate.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <stdio.h>
diff --git a/libc/malloc/tst-mcheck.c b/libc/malloc/tst-mcheck.c
index 16784912a..b1fe28ca4 100644
--- a/libc/malloc/tst-mcheck.c
+++ b/libc/malloc/tst-mcheck.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <stdio.h>
diff --git a/libc/malloc/tst-mtrace.c b/libc/malloc/tst-mtrace.c
index 78be74494..3d0859f27 100644
--- a/libc/malloc/tst-mtrace.c
+++ b/libc/malloc/tst-mtrace.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <mcheck.h>
#include <paths.h>
diff --git a/libc/malloc/tst-mtrace.sh b/libc/malloc/tst-mtrace.sh
index 137bfe22c..8f78a4882 100755
--- a/libc/malloc/tst-mtrace.sh
+++ b/libc/malloc/tst-mtrace.sh
@@ -15,9 +15,8 @@
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
-# License along with the GNU C Library; if not, write to the Free
-# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-# 02111-1307 USA.
+# License along with the GNU C Library; if not, see
+# <http://www.gnu.org/licenses/>.
common_objpfx=$1; shift
cross_test_wrapper="$1"; shift