Mercurial > emacs
changeset 55308:c208f88ccc56
(init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
author | Thien-Thi Nguyen <ttn@gnuvola.org> |
---|---|
date | Sun, 02 May 2004 16:00:08 +0000 |
parents | 56281773d450 |
children | 025486511229 |
files | src/syssignal.h |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/syssignal.h Sun May 02 15:38:02 2004 +0000 +++ b/src/syssignal.h Sun May 02 16:00:08 2004 +0000 @@ -18,6 +18,8 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +extern void init_signals P_ ((void)); + #ifdef POSIX_SIGNALS /* Don't #include <signal.h>. That header should always be #included @@ -31,7 +33,6 @@ #define SIGEMPTYMASK (empty_mask) #define SIGFULLMASK (full_mask) extern sigset_t empty_mask, full_mask; -extern void init_signals P_ ((void)); /* POSIX pretty much destroys any possibility of writing sigmask as a macro in standard C. We always define our own version because the