Skip to content

Commit

Permalink
* sysdeps/posix/raise.c: Likewise.
Browse files Browse the repository at this point in the history
	* sysdeps/generic/raise.c: Likewise.
  • Loading branch information
Roland McGrath committed Aug 3, 2002
1 parent 284128f commit 02926a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
* sysdeps/generic/sigpause.c (__sigpause): Likewise.
* sysdeps/posix/sigpause.c (__sigpause): Likewise.
* sysdeps/unix/bsd/osf/alpha/sigpause.S: Likewise.
* sysdeps/posix/raise.c: Likewise.
* sysdeps/generic/raise.c: Likewise.

2002-08-03 Ulrich Drepper <drepper@redhat.com>

Expand Down
4 changes: 2 additions & 2 deletions sysdeps/generic/raise.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1995, 1996 Free Software Foundation, Inc.
/* Copyright (C) 1991,95,96,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand Down Expand Up @@ -27,7 +27,7 @@ raise (sig)
__set_errno (ENOSYS);
return -1;
}

libc_hidden_def (raise)
weak_alias (raise, gsignal)

stub_warning (raise)
Expand Down
3 changes: 2 additions & 1 deletion sysdeps/posix/raise.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1996 Free Software Foundation, Inc.
/* Copyright (C) 1991,96,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand Down Expand Up @@ -26,4 +26,5 @@ raise (sig)
{
return __kill (__getpid (), sig);
}
libc_hidden_def (raise)
weak_alias (raise, gsignal)

0 comments on commit 02926a6

Please sign in to comment.