# HG changeset patch # User Richard M. Stallman # Date 779763112 0 # Node ID 48bcdcb9d191b5fdcf912c034976622aa40cc280 # Parent ba6936b88869ab58d99c8623fa2b714d918b9f1b (EMACS_INT, EMACS_UINT): Define, if not already defined. diff -r ba6936b88869 -r 48bcdcb9d191 src/lisp.h --- a/src/lisp.h Sat Sep 17 00:45:16 1994 +0000 +++ b/src/lisp.h Sat Sep 17 00:51:52 1994 +0000 @@ -18,6 +18,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +/* These are default choices for the types to use. */ +#ifndef EMACS_INT +#define EMACS_INT int +#endif +#ifndef EMACS_UINT +#define EMACS_UINT unsigned int +#endif + /* Define the fundamental Lisp data structures */ /* This is the set of Lisp data types */