diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-05-02 16:01:50 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-05-02 16:01:50 +0000 |
commit | 2b98b08872a54c23924048e8d1c76335b1c39c7a (patch) | |
tree | 6e673250da2bd89ae4c00f23d7ece2ef82860324 /src/syssignal.h | |
parent | cf8f099f0a318f7888d9a99b4db820bb6bd6471a (diff) | |
download | emacs-2b98b08872a54c23924048e8d1c76335b1c39c7a.tar.gz |
(init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
Diffstat (limited to 'src/syssignal.h')
-rw-r--r-- | src/syssignal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syssignal.h b/src/syssignal.h index 2b536758e27..cef71f7459a 100644 --- a/src/syssignal.h +++ b/src/syssignal.h @@ -18,6 +18,8 @@ along with GNU Emacs; see the file COPYING. If not, write to 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 @@ Boston, MA 02111-1307, USA. */ #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 |