aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThien-Thi Nguyen2004-05-02 16:01:50 +0000
committerThien-Thi Nguyen2004-05-02 16:01:50 +0000
commit2b98b08872a54c23924048e8d1c76335b1c39c7a (patch)
tree6e673250da2bd89ae4c00f23d7ece2ef82860324 /src
parentcf8f099f0a318f7888d9a99b4db820bb6bd6471a (diff)
downloademacs-2b98b08872a54c23924048e8d1c76335b1c39c7a.tar.gz
emacs-2b98b08872a54c23924048e8d1c76335b1c39c7a.zip
(init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/syssignal.h3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4e019bf5280..d52a53852f1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12004-05-02 Thien-Thi Nguyen <ttn@gnu.org>
2
3 * syssignal.h (init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
4
12004-05-01 Stefan Monnier <monnier@iro.umontreal.ca> 52004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * xdisp.c (calc_line_height_property): YAILOM (yet another 7 * xdisp.c (calc_line_height_property): YAILOM (yet another
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
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */ 19Boston, MA 02111-1307, USA. */
20 20
21extern void init_signals P_ ((void));
22
21#ifdef POSIX_SIGNALS 23#ifdef POSIX_SIGNALS
22 24
23/* Don't #include <signal.h>. That header should always be #included 25/* Don't #include <signal.h>. That header should always be #included
@@ -31,7 +33,6 @@ Boston, MA 02111-1307, USA. */
31#define SIGEMPTYMASK (empty_mask) 33#define SIGEMPTYMASK (empty_mask)
32#define SIGFULLMASK (full_mask) 34#define SIGFULLMASK (full_mask)
33extern sigset_t empty_mask, full_mask; 35extern sigset_t empty_mask, full_mask;
34extern void init_signals P_ ((void));
35 36
36/* POSIX pretty much destroys any possibility of writing sigmask as a 37/* POSIX pretty much destroys any possibility of writing sigmask as a
37 macro in standard C. We always define our own version because the 38 macro in standard C. We always define our own version because the