aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 64aaa8acdfa..90817da5974 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -22,7 +22,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
22 22
23#include <errno.h> 23#include <errno.h>
24#include <stdint.h> 24#include <stdint.h>
25#include <stdio.h>
26#include <stdlib.h> 25#include <stdlib.h>
27#include <limits.h> /* For CHAR_BIT. */ 26#include <limits.h> /* For CHAR_BIT. */
28#include <signal.h> /* For SIGABRT, SIGDANGER. */ 27#include <signal.h> /* For SIGABRT, SIGDANGER. */
@@ -38,6 +37,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
38#include "ptr-bounds.h" 37#include "ptr-bounds.h"
39#include "puresize.h" 38#include "puresize.h"
40#include "sheap.h" 39#include "sheap.h"
40#include "sysstdio.h"
41#include "systime.h" 41#include "systime.h"
42#include "character.h" 42#include "character.h"
43#include "buffer.h" 43#include "buffer.h"
@@ -4813,10 +4813,10 @@ test_setjmp (void)
4813 taking place, or the setjmp just didn't save the register. */ 4813 taking place, or the setjmp just didn't save the register. */
4814 4814
4815 if (x == 1) 4815 if (x == 1)
4816 fprintf (stderr, SETJMP_WILL_LIKELY_WORK); 4816 fputs (SETJMP_WILL_LIKELY_WORK, stderr);
4817 else 4817 else
4818 { 4818 {
4819 fprintf (stderr, SETJMP_WILL_NOT_WORK); 4819 fputs (SETJMP_WILL_NOT_WORK, stderr);
4820 exit (1); 4820 exit (1);
4821 } 4821 }
4822 } 4822 }