aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/alloc.c b/src/alloc.c
index d11eff3d387..557621af797 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -21,6 +21,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21#include <config.h> 21#include <config.h>
22#include <stdio.h> 22#include <stdio.h>
23#include <limits.h> /* For CHAR_BIT. */ 23#include <limits.h> /* For CHAR_BIT. */
24#include <setjmp.h>
24 25
25#ifdef STDC_HEADERS 26#ifdef STDC_HEADERS
26#include <stddef.h> /* For offsetof, used by PSEUDOVECSIZE. */ 27#include <stddef.h> /* For offsetof, used by PSEUDOVECSIZE. */
@@ -4939,13 +4940,6 @@ staticpro (varaddress)
4939 abort (); 4940 abort ();
4940} 4941}
4941 4942
4942struct catchtag
4943{
4944 Lisp_Object tag;
4945 Lisp_Object val;
4946 struct catchtag *next;
4947};
4948
4949 4943
4950/*********************************************************************** 4944/***********************************************************************
4951 Protection from GC 4945 Protection from GC