]> git.eshelyaron.com Git - emacs.git/commitdiff
(end_of_text, end_of_data): Unused functions deleted.
authorKen Raeburn <raeburn@raeburn.org>
Sun, 21 Jul 2002 14:17:24 +0000 (14:17 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Sun, 21 Jul 2002 14:17:24 +0000 (14:17 +0000)
src/ChangeLog
src/sysdep.c

index ef5e2ccbdd2bfeaf0f3838328265eb8146683431..af49678c5f8713bf5f83982b759efea7677570b7 100644 (file)
@@ -1,5 +1,7 @@
 2002-07-21  Ken Raeburn  <raeburn@gnu.org>
 
+       * sysdep.c (end_of_text, end_of_data): Unused functions deleted.
+
        * buffer.c (mmap_realloc): When shrinking, make sure number of
        pages to unmap is rounded towards zero.
 
index 7569c71e8605bea02d771cb5797e482dbda13538..6eb079075e785972129b037a46fc37a5d96ebfae 100644 (file)
@@ -2260,43 +2260,6 @@ start_of_data ()
 #endif /* DATA_START */
 }
 #endif /* NEED_STARTS (not CANNOT_DUMP or not SYSTEM_MALLOC) */
-
-#ifndef CANNOT_DUMP
-/* Some systems that cannot dump also cannot implement these.  */
-
-/*
- *     Return the address of the end of the text segment prior to
- *     doing an unexec.  After unexec the return value is undefined.
- */
-char *
-end_of_text ()
-{
-#ifdef TEXT_END
-  return ((char *) TEXT_END);
-#else
-  extern int etext;
-  return ((char *) &etext);
-#endif
-}
-/*
- *     Return the address of the end of the data segment prior to
- *     doing an unexec.  After unexec the return value is undefined.
- */
-
-char *
-end_of_data ()
-{
-#ifdef DATA_END
-  return ((char *) DATA_END);
-#else
-  extern int edata;
-  return ((char *) &edata);
-#endif
-}
-
-#endif /* not CANNOT_DUMP */
 \f
 /* init_system_name sets up the string for the Lisp function
    system-name to return. */