to the start of the file.
+2001-02-19 Gerd Moellmann <gerd@gnu.org>
+
+ * ralloc.c (__morecore) [!SYSTEM_MALLOC]: Move declaration
+ to the start of the file.
+
2001-02-16 Gerd Moellmann <gerd@gnu.org>
* window.c (set_window_buffer): Fix last change.
#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
+
+
\f
/***********************************************************************
Implementation using sbrk
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