diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-03-20 01:11:59 -0700 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-03-20 01:11:59 -0700 |
commit | 22e8757456ea6608246d9c81a83f6c5119f2e1fb (patch) | |
tree | 84aefe1ae178ef9b7d5b26549dc1f0cf0406a495 /src/emacs.c | |
parent | 05a670e6d3593a9e68804447dee5596fb7ca5ed4 (diff) | |
download | emacs-22e8757456ea6608246d9c81a83f6c5119f2e1fb.tar.gz |
Remove support for old GNU/Linux using libc version 5.
* m/alpha.h (LINUX_SBRK_BUG): Remove definition.
* emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/emacs.c b/src/emacs.c index dbaae9b040b..60aa14e2b78 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -790,11 +790,6 @@ main (int argc, char **argv) heap_bss_diff = (char *)my_heap_start - max (my_endbss, my_endbss_static); } -#ifdef LINUX_SBRK_BUG - /* This is only used GNU/LINUX running on alpha when using libc5 */ - __sbrk (1); -#endif - #ifdef RUN_TIME_REMAP if (initialized) run_time_remap (argv[0]); |