aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ralloc.c13
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. */
30 30
31#undef NULL 31#undef NULL
32 32
33/* The important properties of this type are that 1) it's a pointer, and
34 2) arithmetic on it should work as if the size of the object pointed
35 to has a size of 1. */
36#ifdef __STDC__
37typedef void *POINTER;
38#else
39typedef char *POINTER;
40#endif
41
42typedef unsigned long SIZE;
43
33/* Declared in dispnew.c, this version doesn't screw up if regions 44/* Declared in dispnew.c, this version doesn't screw up if regions
34 overlap. */ 45 overlap. */
35extern void safe_bcopy (); 46extern void safe_bcopy ();
@@ -43,8 +54,6 @@ extern void safe_bcopy ();
43typedef size_t SIZE; 54typedef size_t SIZE;
44typedef void *POINTER; 55typedef void *POINTER;
45 56
46#define EXCEEDS_LISP_PTR(x) 0
47
48#include <unistd.h> 57#include <unistd.h>
49#include <malloc.h> 58#include <malloc.h>
50#include <string.h> 59#include <string.h>