X-Git-Url: https://git.hcoop.net/bpt/emacs.git/blobdiff_plain/ff23cd9f452b6d2b5001a67d7b14e0af7f61b194..261cb4bb750143d8078bb27a343e0d9560b884df:/src/ralloc.c diff --git a/src/ralloc.c b/src/ralloc.c index 4bb2f24043..d736e27952 100644 --- a/src/ralloc.c +++ b/src/ralloc.c @@ -31,9 +31,6 @@ along with GNU Emacs. If not, see . */ #include -typedef POINTER_TYPE *POINTER; -typedef size_t SIZE; - #ifdef DOUG_LEA_MALLOC #define M_TOP_PAD -2 extern int mallopt (int, int); @@ -47,9 +44,6 @@ extern size_t __malloc_extra_blocks; #include -typedef size_t SIZE; -typedef void *POINTER; - #include #include @@ -58,6 +52,8 @@ typedef void *POINTER; #include "getpagesize.h" +typedef size_t SIZE; +typedef void *POINTER; #define NIL ((POINTER) 0) /* A flag to indicate whether we have initialized ralloc yet. For