diff options
author | Richard M. Stallman <rms@gnu.org> | 1992-10-20 06:12:43 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1992-10-20 06:12:43 +0000 |
commit | f275fd9a94fb8203c80ead001dce56fae8217d6d (patch) | |
tree | 0201c42d00c9ddd22c63d09c8b9cf70abc8c1b98 /src/ralloc.c | |
parent | c52713b17b0446ad112cfda886151f5d7fcdf6c0 (diff) | |
download | emacs-f275fd9a94fb8203c80ead001dce56fae8217d6d.tar.gz emacs-f275fd9a94fb8203c80ead001dce56fae8217d6d.tar.bz2 emacs-f275fd9a94fb8203c80ead001dce56fae8217d6d.zip |
[emacs]: Define POINTER and SIZE.
[!emacs]: Delete definition of EXCEEDS_LISP_PTR.
Diffstat (limited to 'src/ralloc.c')
-rw-r--r-- | src/ralloc.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/ralloc.c b/src/ralloc.c index 70af2b9b147..71c867901cb 100644 --- a/src/ralloc.c +++ b/src/ralloc.c @@ -30,6 +30,17 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #undef NULL +/* The important properties of this type are that 1) it's a pointer, and + 2) arithmetic on it should work as if the size of the object pointed + to has a size of 1. */ +#ifdef __STDC__ +typedef void *POINTER; +#else +typedef char *POINTER; +#endif + +typedef unsigned long SIZE; + /* Declared in dispnew.c, this version doesn't screw up if regions overlap. */ extern void safe_bcopy (); @@ -43,8 +54,6 @@ extern void safe_bcopy (); typedef size_t SIZE; typedef void *POINTER; -#define EXCEEDS_LISP_PTR(x) 0 - #include <unistd.h> #include <malloc.h> #include <string.h> |