]> git.eshelyaron.com Git - emacs.git/commitdiff
(init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
authorThien-Thi Nguyen <ttn@gnuvola.org>
Sun, 2 May 2004 16:01:50 +0000 (16:01 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Sun, 2 May 2004 16:01:50 +0000 (16:01 +0000)
src/ChangeLog
src/syssignal.h

index 4e019bf52806bc49fe9a5ef45f1fe13bc422f7e4..d52a53852f1118c9f855fb6fe79dad2fbd49892b 100644 (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
index 2b536758e276d33a11c6856db5562ccdebf6a00f..cef71f7459ab1b23c4def7647b8d745e67bcb69b 100644 (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