summaryrefslogtreecommitdiff
path: root/malloc
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-02-09 23:18:22 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-02-09 23:18:22 +0000
commit59ba27a63ada3f46b71ec99a314dfac5a38ad6d2 (patch)
tree69edda6ebdfd8fe5d83991ab44723e07f6366420 /malloc
parentaf850b1c978bdca648ef9fb141e785d75f74d9bf (diff)
Replace FSF snail mail address with URLs.
Diffstat (limited to 'malloc')
-rw-r--r--malloc/Makefile5
-rw-r--r--malloc/arena.c5
-rw-r--r--malloc/hooks.c5
-rw-r--r--malloc/malloc.c5
-rw-r--r--malloc/malloc.h5
-rw-r--r--malloc/mcheck-init.c5
-rw-r--r--malloc/mcheck.c5
-rw-r--r--malloc/mcheck.h5
-rw-r--r--malloc/memusage.c5
-rwxr-xr-xmalloc/memusage.sh5
-rw-r--r--malloc/memusagestat.c3
-rw-r--r--malloc/morecore.c5
-rw-r--r--malloc/mtrace.c5
-rw-r--r--malloc/mtrace.pl5
-rw-r--r--malloc/obstack.c5
-rw-r--r--malloc/obstack.h5
-rw-r--r--malloc/set-freeres.c5
-rw-r--r--malloc/thread-freeres.c5
-rw-r--r--malloc/tst-calloc.c5
-rw-r--r--malloc/tst-malloc.c5
-rw-r--r--malloc/tst-mallocstate.c5
-rw-r--r--malloc/tst-mcheck.c5
-rw-r--r--malloc/tst-mtrace.c5
-rwxr-xr-xmalloc/tst-mtrace.sh5
24 files changed, 47 insertions, 71 deletions
diff --git a/malloc/Makefile b/malloc/Makefile
index b5f8d30159..17421062f3 100644
--- a/malloc/Makefile
+++ b/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/malloc/arena.c b/malloc/arena.c
index 24c11f225c..33c4ff37a7 100644
--- a/malloc/arena.c
+++ b/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/malloc/hooks.c b/malloc/hooks.c
index 2414d7dda8..8a34c78488 100644
--- a/malloc/hooks.c
+++ b/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/malloc/malloc.c b/malloc/malloc.c
index d8df9c7762..d7d79e03fa 100644
--- a/malloc/malloc.c
+++ b/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/malloc/malloc.h b/malloc/malloc.h
index eb63afb6cb..02b28c78e8 100644
--- a/malloc/malloc.h
+++ b/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/malloc/mcheck-init.c b/malloc/mcheck-init.c
index b6354cafaf..80ad1ff7da 100644
--- a/malloc/mcheck-init.c
+++ b/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/malloc/mcheck.c b/malloc/mcheck.c
index a3dd1c42a4..9213740360 100644
--- a/malloc/mcheck.c
+++ b/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/malloc/mcheck.h b/malloc/mcheck.h
index 462b944af2..208cb43381 100644
--- a/malloc/mcheck.h
+++ b/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/malloc/memusage.c b/malloc/memusage.c
index 382261c1c4..d26c4beb0c 100644
--- a/malloc/memusage.c
+++ b/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/malloc/memusage.sh b/malloc/memusage.sh
index d7b30a6a90..7ed68c0773 100755
--- a/malloc/memusage.sh
+++ b/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/malloc/memusagestat.c b/malloc/memusagestat.c
index a5a315056b..af8f991003 100644
--- a/malloc/memusagestat.c
+++ b/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/malloc/morecore.c b/malloc/morecore.c
index 0a66ef5a85..8a72ba6a3d 100644
--- a/malloc/morecore.c
+++ b/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/malloc/mtrace.c b/malloc/mtrace.c
index d0fdf2302f..67e3e44336 100644
--- a/malloc/mtrace.c
+++ b/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/malloc/mtrace.pl b/malloc/mtrace.pl
index f6a7abb70c..a2125003cb 100644
--- a/malloc/mtrace.pl
+++ b/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@";
$PACKAGE = "libc";
diff --git a/malloc/obstack.c b/malloc/obstack.c
index 75440d9c79..5786da0aa4 100644
--- a/malloc/obstack.c
+++ b/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/malloc/obstack.h b/malloc/obstack.h
index 096385663c..a791823cf3 100644
--- a/malloc/obstack.h
+++ b/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/malloc/set-freeres.c b/malloc/set-freeres.c
index dfd4641a71..02e7ae6075 100644
--- a/malloc/set-freeres.c
+++ b/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/malloc/thread-freeres.c b/malloc/thread-freeres.c
index cc9db39202..89fd828d97 100644
--- a/malloc/thread-freeres.c
+++ b/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/malloc/tst-calloc.c b/malloc/tst-calloc.c
index b3594c937f..6383363e5c 100644
--- a/malloc/tst-calloc.c
+++ b/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/malloc/tst-malloc.c b/malloc/tst-malloc.c
index 81d279236c..d564f9aa4d 100644
--- a/malloc/tst-malloc.c
+++ b/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/malloc/tst-mallocstate.c b/malloc/tst-mallocstate.c
index 97a10586d3..44a35eccd4 100644
--- a/malloc/tst-mallocstate.c
+++ b/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/malloc/tst-mcheck.c b/malloc/tst-mcheck.c
index 16784912a9..b1fe28ca4c 100644
--- a/malloc/tst-mcheck.c
+++ b/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/malloc/tst-mtrace.c b/malloc/tst-mtrace.c
index 78be74494c..3d0859f27e 100644
--- a/malloc/tst-mtrace.c
+++ b/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/malloc/tst-mtrace.sh b/malloc/tst-mtrace.sh
index 771689a273..9ed9518db1 100755
--- a/malloc/tst-mtrace.sh
+++ b/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