diff options
| author | Dan Nicolaescu | 2008-07-23 08:02:27 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-07-23 08:02:27 +0000 |
| commit | 5fa8e472948b7e7fe3903c73ed39b28109f22216 (patch) | |
| tree | 6a79cfe87ec6dd2395cfe285ed9c04a8bcba4ce8 /src | |
| parent | bbbac910aa8e606e15327794f3a83c8145120e1c (diff) | |
| download | emacs-5fa8e472948b7e7fe3903c73ed39b28109f22216.tar.gz emacs-5fa8e472948b7e7fe3903c73ed39b28109f22216.zip | |
(main): Use defined(GNU_LINUX).
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs.c b/src/emacs.c index b84f137be8d..88ec4877316 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -827,7 +827,7 @@ main (argc, argv | |||
| 827 | heap_bss_diff = (char *)my_heap_start - max (my_endbss, my_endbss_static); | 827 | heap_bss_diff = (char *)my_heap_start - max (my_endbss, my_endbss_static); |
| 828 | } | 828 | } |
| 829 | 829 | ||
| 830 | #if (GNU_LINUX) && __GNU_LIBRARY__ - 0 < 6 | 830 | #if defined(GNU_LINUX) && __GNU_LIBRARY__ - 0 < 6 |
| 831 | __sbrk (1); | 831 | __sbrk (1); |
| 832 | #endif | 832 | #endif |
| 833 | 833 | ||