From: Richard M. Stallman Date: Sat, 17 Sep 1994 00:51:52 +0000 (+0000) Subject: (EMACS_INT, EMACS_UINT): Define, if not already defined. X-Git-Tag: emacs-19.34~7019 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ce99fd6592360172ad88189e2e187344f17f23af;p=emacs.git (EMACS_INT, EMACS_UINT): Define, if not already defined. --- diff --git a/src/lisp.h b/src/lisp.h index d49fb527b18..bce12d63e6b 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -18,6 +18,14 @@ along with GNU Emacs; see the file COPYING. If not, write to 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 */