diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-09-17 00:51:52 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-09-17 00:51:52 +0000 |
commit | ce99fd6592360172ad88189e2e187344f17f23af (patch) | |
tree | 6021f33f58155f9b4d853265467759005b3df6ff /src | |
parent | 5d5ed90761beb3327004769073e29633f86e4794 (diff) | |
download | emacs-ce99fd6592360172ad88189e2e187344f17f23af.tar.gz |
(EMACS_INT, EMACS_UINT): Define, if not already defined.
Diffstat (limited to 'src')
-rw-r--r-- | src/lisp.h | 8 |
1 files changed, 8 insertions, 0 deletions
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 */ |