]> 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:07:15 +0000 (16:07 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Sun, 2 May 2004 16:07:15 +0000 (16:07 +0000)
src/ChangeLog
src/syssignal.h

index 011233fbd662df8aebf7986f9b3da3078a8c9c36..f9fc60f1bec3ccbe3c6b8278ed083c2e430b0764 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-02  Thien-Thi Nguyen  <ttn@gnu.org>
 
        * tparam.c (tparam1): Add handling for `%pN', which
index 2ea83b68b902d414e280f43975e0d1b9f6e88e1e..89dca4db0f41ac7e65d8513aa52308d5d3f0d183 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
@@ -96,7 +97,7 @@ extern SIGMASKTYPE sigprocmask_set;
 #ifdef USG
 
 #ifndef sigunblock
-#define sigunblock(sig) 
+#define sigunblock(sig)
 #endif
 
 #else