Mercurial > emacs
changeset 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 | ba6936b88869 |
children | 2afe507ed505 |
files | src/lisp.h |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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 */