emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/sysdep.c


From: Ken Raeburn
Subject: [Emacs-diffs] Changes to emacs/src/sysdep.c
Date: Sun, 21 Jul 2002 10:17:20 -0400

Index: emacs/src/sysdep.c
diff -c emacs/src/sysdep.c:1.240 emacs/src/sysdep.c:1.241
*** emacs/src/sysdep.c:1.240    Fri Jul 19 10:37:13 2002
--- emacs/src/sysdep.c  Sun Jul 21 10:17:19 2002
***************
*** 2260,2302 ****
  #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 */
  
  /* init_system_name sets up the string for the Lisp function
     system-name to return. */
--- 2260,2265 ----



reply via email to

[Prev in Thread] Current Thread [Next in Thread]