summaryrefslogtreecommitdiff
path: root/libc/signal
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-11-18 06:03:05 -0500
committerMike Frysinger <vapier@gentoo.org>2012-11-18 06:03:38 -0500
commit266bdc1f623fe6fe489e5115e0f8ef723705d949 (patch)
tree2c2eef8bec7d90df06ad30320329ff2db3dcfceb /libc/signal
parent38cc9874d3651d10c75c7a7dce9a2a86a10d0300 (diff)
Replace FSF snail mail address with URLs
This matches a similar change made to glibc. No functional changes here. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libc/signal')
-rw-r--r--libc/signal/allocrtsig.c5
-rw-r--r--libc/signal/killpg.c5
-rw-r--r--libc/signal/sigaction.c5
-rw-r--r--libc/signal/sigaddset.c5
-rw-r--r--libc/signal/sigandset.c5
-rw-r--r--libc/signal/sigblock.c5
-rw-r--r--libc/signal/sigdelset.c5
-rw-r--r--libc/signal/sigempty.c5
-rw-r--r--libc/signal/sigfillset.c5
-rw-r--r--libc/signal/siggetmask.c5
-rw-r--r--libc/signal/sighold.c5
-rw-r--r--libc/signal/sigignore.c5
-rw-r--r--libc/signal/sigintr.c5
-rw-r--r--libc/signal/sigisempty.c5
-rw-r--r--libc/signal/sigismem.c5
-rw-r--r--libc/signal/sigjmp.c5
-rw-r--r--libc/signal/signal.c5
-rw-r--r--libc/signal/sigorset.c5
-rw-r--r--libc/signal/sigpause.c5
-rw-r--r--libc/signal/sigrelse.c5
-rw-r--r--libc/signal/sigset-cvt-mask.h5
-rw-r--r--libc/signal/sigset.c5
-rw-r--r--libc/signal/sigsetmask.c5
-rw-r--r--libc/signal/sigwait.c6
-rw-r--r--libc/signal/sysv_signal.c5
25 files changed, 51 insertions, 75 deletions
diff --git a/libc/signal/allocrtsig.c b/libc/signal/allocrtsig.c
index 2b2098f56..974418761 100644
--- a/libc/signal/allocrtsig.c
+++ b/libc/signal/allocrtsig.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 <features.h>
#include <signal.h>
diff --git a/libc/signal/killpg.c b/libc/signal/killpg.c
index 73f48ec3a..e713212b7 100644
--- a/libc/signal/killpg.c
+++ b/libc/signal/killpg.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 <signal.h>
diff --git a/libc/signal/sigaction.c b/libc/signal/sigaction.c
index d6aef331b..256064725 100644
--- a/libc/signal/sigaction.c
+++ b/libc/signal/sigaction.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 <signal.h>
#include <sys/syscall.h>
diff --git a/libc/signal/sigaddset.c b/libc/signal/sigaddset.c
index 94fcc80e2..7e800a7f1 100644
--- a/libc/signal/sigaddset.c
+++ b/libc/signal/sigaddset.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/>. */
#define __need_NULL
#include <stddef.h>
diff --git a/libc/signal/sigandset.c b/libc/signal/sigandset.c
index dcc37daba..24f33f3cc 100644
--- a/libc/signal/sigandset.c
+++ b/libc/signal/sigandset.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 <signal.h>
diff --git a/libc/signal/sigblock.c b/libc/signal/sigblock.c
index cb3b26519..dc62acdd9 100644
--- a/libc/signal/sigblock.c
+++ b/libc/signal/sigblock.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/>. */
/*#define __UCLIBC_HIDE_DEPRECATED__*/
#include <signal.h>
diff --git a/libc/signal/sigdelset.c b/libc/signal/sigdelset.c
index 9262b1a65..de3b12ff0 100644
--- a/libc/signal/sigdelset.c
+++ b/libc/signal/sigdelset.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/>. */
#define __need_NULL
#include <stddef.h>
diff --git a/libc/signal/sigempty.c b/libc/signal/sigempty.c
index adbded62a..393edae57 100644
--- a/libc/signal/sigempty.c
+++ b/libc/signal/sigempty.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 <signal.h>
#if 0
diff --git a/libc/signal/sigfillset.c b/libc/signal/sigfillset.c
index 4e8af2d65..5ef4c829c 100644
--- a/libc/signal/sigfillset.c
+++ b/libc/signal/sigfillset.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 <signal.h>
#ifdef __UCLIBC_HAS_THREADS_NATIVE__
diff --git a/libc/signal/siggetmask.c b/libc/signal/siggetmask.c
index 833de969e..ce8f40289 100644
--- a/libc/signal/siggetmask.c
+++ b/libc/signal/siggetmask.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/>. */
#define __UCLIBC_HIDE_DEPRECATED__
#include <signal.h>
diff --git a/libc/signal/sighold.c b/libc/signal/sighold.c
index 2b1ecd14f..6fd160660 100644
--- a/libc/signal/sighold.c
+++ b/libc/signal/sighold.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/>. */
#define __need_NULL
#include <stddef.h>
diff --git a/libc/signal/sigignore.c b/libc/signal/sigignore.c
index 984fd854b..1ddce8113 100644
--- a/libc/signal/sigignore.c
+++ b/libc/signal/sigignore.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/>. */
#define __need_NULL
#include <stddef.h>
diff --git a/libc/signal/sigintr.c b/libc/signal/sigintr.c
index 210d493ca..83d34978c 100644
--- a/libc/signal/sigintr.c
+++ b/libc/signal/sigintr.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 <signal.h>
diff --git a/libc/signal/sigisempty.c b/libc/signal/sigisempty.c
index a25bb473d..46153b6b4 100644
--- a/libc/signal/sigisempty.c
+++ b/libc/signal/sigisempty.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 <signal.h>
diff --git a/libc/signal/sigismem.c b/libc/signal/sigismem.c
index 334a06f82..06e939e96 100644
--- a/libc/signal/sigismem.c
+++ b/libc/signal/sigismem.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/>. */
#define __need_NULL
#include <stddef.h>
diff --git a/libc/signal/sigjmp.c b/libc/signal/sigjmp.c
index cf2be682e..ffd8c24b1 100644
--- a/libc/signal/sigjmp.c
+++ b/libc/signal/sigjmp.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/>. */
#define __need_NULL
#include <stddef.h>
diff --git a/libc/signal/signal.c b/libc/signal/signal.c
index d82e421ec..d59cb38ca 100644
--- a/libc/signal/signal.c
+++ b/libc/signal/signal.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 <signal.h>
diff --git a/libc/signal/sigorset.c b/libc/signal/sigorset.c
index 3588cc482..238814233 100644
--- a/libc/signal/sigorset.c
+++ b/libc/signal/sigorset.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 <signal.h>
diff --git a/libc/signal/sigpause.c b/libc/signal/sigpause.c
index 63afeead2..de50d98b2 100644
--- a/libc/signal/sigpause.c
+++ b/libc/signal/sigpause.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 <signal.h>
#define __need_NULL
diff --git a/libc/signal/sigrelse.c b/libc/signal/sigrelse.c
index b5136482e..30ff9f794 100644
--- a/libc/signal/sigrelse.c
+++ b/libc/signal/sigrelse.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/>. */
#define __need_NULL
#include <stddef.h>
diff --git a/libc/signal/sigset-cvt-mask.h b/libc/signal/sigset-cvt-mask.h
index 93ea36f5e..c497ebfff 100644
--- a/libc/signal/sigset-cvt-mask.h
+++ b/libc/signal/sigset-cvt-mask.h
@@ -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 _SIGSET_CVT_MASK_H
#define _SIGSET_CVT_MASK_H
diff --git a/libc/signal/sigset.c b/libc/signal/sigset.c
index 3b162df31..55ad92ecf 100644
--- a/libc/signal/sigset.c
+++ b/libc/signal/sigset.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>
#define __need_NULL
diff --git a/libc/signal/sigsetmask.c b/libc/signal/sigsetmask.c
index df040a65d..72188c5fc 100644
--- a/libc/signal/sigsetmask.c
+++ b/libc/signal/sigsetmask.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/>. */
/*#define __UCLIBC_HIDE_DEPRECATED__*/
#include <signal.h>
diff --git a/libc/signal/sigwait.c b/libc/signal/sigwait.c
index 7d47f99de..3e7286566 100644
--- a/libc/signal/sigwait.c
+++ b/libc/signal/sigwait.c
@@ -15,9 +15,9 @@
* 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; see the file COPYING.LIB. If
+ * not, see <http://www.gnu.org/licenses/>.
+ */
#define __need_NULL
#include <stddef.h>
diff --git a/libc/signal/sysv_signal.c b/libc/signal/sysv_signal.c
index 65d8190d0..9b270fdf8 100644
--- a/libc/signal/sysv_signal.c
+++ b/libc/signal/sysv_signal.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 <signal.h>