comparison src/lisp.h @ 8835:48bcdcb9d191

(EMACS_INT, EMACS_UINT): Define, if not already defined.
author Richard M. Stallman <rms@gnu.org>
date Sat, 17 Sep 1994 00:51:52 +0000
parents 97bf951c0b98
children 7327513b377b
comparison
equal deleted inserted replaced
8834:ba6936b88869 8835:48bcdcb9d191
15 15
16 You should have received a copy of the GNU General Public License 16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to 17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ 18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19 19
20
21 /* These are default choices for the types to use. */
22 #ifndef EMACS_INT
23 #define EMACS_INT int
24 #endif
25 #ifndef EMACS_UINT
26 #define EMACS_UINT unsigned int
27 #endif
20 28
21 /* Define the fundamental Lisp data structures */ 29 /* Define the fundamental Lisp data structures */
22 30
23 /* This is the set of Lisp data types */ 31 /* This is the set of Lisp data types */
24 32