emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 54f5990: Further include-file cleanup


From: Ken Brown
Subject: [Emacs-diffs] master 54f5990: Further include-file cleanup
Date: Wed, 21 Oct 2015 22:09:16 +0000

branch: master
commit 54f59907f1e30aa9c6345295ee9a689468075802
Author: Ken Brown <address@hidden>
Commit: Ken Brown <address@hidden>

    Further include-file cleanup
    
    * src/sheap.c: Include stdlib.h.
    * src/unexcw.c: Include string.h.
---
 src/sheap.c  |    3 +--
 src/unexcw.c |    2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/sheap.c b/src/sheap.c
index 106b279..df33353 100644
--- a/src/sheap.c
+++ b/src/sheap.c
@@ -20,10 +20,9 @@ along with GNU Emacs.  If not, see 
<http://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 #include <stdio.h>
-
 #include "lisp.h"
-
 #include <unistd.h>
+#include <stdlib.h>            /* for exit */
 
 #ifdef ENABLE_CHECKING
 #define STATIC_HEAP_SIZE       (28 * 1024 * 1024)
diff --git a/src/unexcw.c b/src/unexcw.c
index be88578..9583598 100644
--- a/src/unexcw.c
+++ b/src/unexcw.c
@@ -21,7 +21,7 @@ along with GNU Emacs.  If not, see 
<http://www.gnu.org/licenses/>.  */
 #include <config.h>
 #include "unexec.h"
 #include "lisp.h"
-
+#include <string.h>
 #include <stdio.h>
 #include <fcntl.h>
 #include <a.out.h>



reply via email to

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