1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-25 10:47:00 +00:00

(init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.

This commit is contained in:
Thien-Thi Nguyen 2004-05-02 16:01:50 +00:00
parent cf8f099f0a
commit 2b98b08872
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-05-02 Thien-Thi Nguyen <ttn@gnu.org>
* syssignal.h (init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
* xdisp.c (calc_line_height_property): YAILOM (yet another

View File

@ -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