comparison src/pure.c @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 929b76928fce
comparison
equal deleted inserted replaced
-1:000000000000 0:376386a54a3c
1 /* This file is part of XEmacs.
2
3 XEmacs is free software; you can redistribute it and/or modify it
4 under the terms of the GNU General Public License as published by the
5 Free Software Foundation; either version 2, or (at your option) any
6 later version.
7
8 XEmacs is distributed in the hope that it will be useful, but WITHOUT
9 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11 for more details.
12
13 You should have received a copy of the GNU General Public License
14 along with XEmacs; see the file COPYING. If not, write to
15 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 Boston, MA 02111-1307, USA. */
17
18 /* Synched up with: FSF 19.30. Split out of alloc.c. */
19
20 #include <config.h>
21 #include "puresize.h"
22 #include "lisp.h"
23
24 Lisp_Object pure[PURESIZE / sizeof (Lisp_Object)]
25 /* Force linker to put it into data space! */
26 #ifdef NO_UNION_TYPE
27 = {0};
28 #else
29 /* Need this many braces to convince GCC not to complain */
30 = {{{0}}};
31 #endif