diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-02-19 12:20:08 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-02-19 12:20:08 +0000 |
commit | aeac019e2f2b9e6a13fc50d9a7291131754a26ed (patch) | |
tree | 095f22033db080302eed40f1a410651b5901fa36 /src/ralloc.c | |
parent | 94c3309fd57b66787d4d2d4b39560b2527af60d1 (diff) | |
download | emacs-aeac019e2f2b9e6a13fc50d9a7291131754a26ed.tar.gz |
(__morecore) [!SYSTEM_MALLOC]: Move declaration
to the start of the file.
Diffstat (limited to 'src/ralloc.c')
-rw-r--r-- | src/ralloc.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ralloc.c b/src/ralloc.c index 2e9004baa2f..9d31320bfcf 100644 --- a/src/ralloc.c +++ b/src/ralloc.c @@ -114,6 +114,14 @@ static int extra_bytes; #define MEM_ROUNDUP(addr) (((unsigned long int)(addr) + MEM_ALIGN - 1) \ & ~(MEM_ALIGN - 1)) +/* The hook `malloc' uses for the function which gets more space + from the system. */ + +#ifndef SYSTEM_MALLOC +extern POINTER (*__morecore) (); +#endif + + /*********************************************************************** Implementation using sbrk @@ -1222,14 +1230,6 @@ r_alloc_check () Initialization ***********************************************************************/ -/* The hook `malloc' uses for the function which gets more space - from the system. */ - -#ifndef SYSTEM_MALLOC -extern POINTER (*__morecore) (); -#endif - - /* Initialize various things for memory allocation. */ static void |