diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-02-09 23:18:22 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-02-09 23:18:22 +0000 |
commit | 59ba27a63ada3f46b71ec99a314dfac5a38ad6d2 (patch) | |
tree | 69edda6ebdfd8fe5d83991ab44723e07f6366420 /csu | |
parent | af850b1c978bdca648ef9fb141e785d75f74d9bf (diff) | |
download | glibc-59ba27a63ada3f46b71ec99a314dfac5a38ad6d2.zip glibc-59ba27a63ada3f46b71ec99a314dfac5a38ad6d2.tar.gz glibc-59ba27a63ada3f46b71ec99a314dfac5a38ad6d2.tar.bz2 |
Replace FSF snail mail address with URLs.
Diffstat (limited to 'csu')
-rw-r--r-- | csu/Makefile | 5 | ||||
-rw-r--r-- | csu/abi-note.S | 5 | ||||
-rw-r--r-- | csu/check_fds.c | 5 | ||||
-rw-r--r-- | csu/dso_handle.c | 5 | ||||
-rw-r--r-- | csu/elf-init.c | 5 | ||||
-rw-r--r-- | csu/errno-loc.c | 5 | ||||
-rw-r--r-- | csu/errno.c | 5 | ||||
-rw-r--r-- | csu/gmon-start.c | 5 | ||||
-rw-r--r-- | csu/init-first.c | 5 | ||||
-rw-r--r-- | csu/init.c | 5 | ||||
-rw-r--r-- | csu/libc-start.c | 5 | ||||
-rw-r--r-- | csu/libc-tls.c | 5 | ||||
-rw-r--r-- | csu/tst-atomic-long.c | 5 | ||||
-rw-r--r-- | csu/tst-atomic.c | 5 | ||||
-rw-r--r-- | csu/version.c | 5 |
15 files changed, 30 insertions, 45 deletions
diff --git a/csu/Makefile b/csu/Makefile index a67919e..c36c42c 100644 --- a/csu/Makefile +++ b/csu/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/>. # This directory contains the C startup code (that which calls main). This # consists of the startfile, built from start.c and installed as crt0.o diff --git a/csu/abi-note.S b/csu/abi-note.S index 19c50d0..e1a44a9 100644 --- a/csu/abi-note.S +++ b/csu/abi-note.S @@ -22,9 +22,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/>. */ /* Define an ELF note identifying the operating-system ABI that the executable was created for. The ELF note information identifies a diff --git a/csu/check_fds.c b/csu/check_fds.c index 10ba3da..dcd508d 100644 --- a/csu/check_fds.c +++ b/csu/check_fds.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 <errno.h> #include <fcntl.h> diff --git a/csu/dso_handle.c b/csu/dso_handle.c index fd295f2..0aad835 100644 --- a/csu/dso_handle.c +++ b/csu/dso_handle.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/>. */ /* We have to define __dso_handle ourselves since we do not use gcc's crtbegin files. */ diff --git a/csu/elf-init.c b/csu/elf-init.c index 56c2b02..91ba74c 100644 --- a/csu/elf-init.c +++ b/csu/elf-init.c @@ -31,9 +31,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 <stddef.h> diff --git a/csu/errno-loc.c b/csu/errno-loc.c index f7de2b7..3b646a4 100644 --- a/csu/errno-loc.c +++ b/csu/errno-loc.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 <errno.h> #include <tls.h> diff --git a/csu/errno.c b/csu/errno.c index d5d2c98..a383d8f 100644 --- a/csu/errno.c +++ b/csu/errno.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 <tls.h> diff --git a/csu/gmon-start.c b/csu/gmon-start.c index 107153f..f0327a6 100644 --- a/csu/gmon-start.c +++ b/csu/gmon-start.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 <sys/types.h> #include <sys/gmon.h> diff --git a/csu/init-first.c b/csu/init-first.c index fa21274..0115061 100644 --- a/csu/init-first.c +++ b/csu/init-first.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 <unistd.h> #include <sys/types.h> @@ -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/>. */ #if defined __GNUC__ && __GNUC__ >= 2 diff --git a/csu/libc-start.c b/csu/libc-start.c index dc7ca55..0f9bfd7 100644 --- a/csu/libc-start.c +++ b/csu/libc-start.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 <stdlib.h> #include <stdio.h> diff --git a/csu/libc-tls.c b/csu/libc-tls.c index 5a49942..b00a5cc 100644 --- a/csu/libc-tls.c +++ b/csu/libc-tls.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 <ldsodefs.h> diff --git a/csu/tst-atomic-long.c b/csu/tst-atomic-long.c index 75a71eb..e15b4c2 100644 --- a/csu/tst-atomic-long.c +++ b/csu/tst-atomic-long.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 <bits/wordsize.h> diff --git a/csu/tst-atomic.c b/csu/tst-atomic.c index 7c0b022..8115669 100644 --- a/csu/tst-atomic.c +++ b/csu/tst-atomic.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 <stdio.h> #include <atomic.h> diff --git a/csu/version.c b/csu/version.c index 564aec5..7803938 100644 --- a/csu/version.c +++ b/csu/version.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 "version.h" #include <tls.h> |