aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1995-11-21 16:56:17 +0000
committerRichard M. Stallman <[email protected]>1995-11-21 16:56:17 +0000
commit6000fe37361574fcecf997c19429bc0646fccc10 (patch)
treeea2a27226e4b3e5198ca03e22d7d5200d5235b16 /src/emacs.c
parent629aa3cbaf1d19b26203007d42b919baa2b1166e (diff)
(main): Add LINUX_SBRK_BUG conditional call to __sbrk.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 51dcdd10b6..052546a13c 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -419,6 +419,10 @@ main (argc, argv, envp)
extern int errno;
extern sys_nerr;
+#ifdef LINUX_SBRK_BUG
+ __sbrk (1);
+#endif
+
sort_args (argc, argv);
if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args))