diff options
| author | Ken Brown | 2015-10-21 18:08:36 -0400 |
|---|---|---|
| committer | Ken Brown | 2015-10-21 18:08:36 -0400 |
| commit | 54f59907f1e30aa9c6345295ee9a689468075802 (patch) | |
| tree | c5ffc68375feef4f0c387d919e93cef8b228ee89 /src | |
| parent | 5dc48a2da9919f649952e75e54c48fda69a24ac3 (diff) | |
| download | emacs-54f59907f1e30aa9c6345295ee9a689468075802.tar.gz emacs-54f59907f1e30aa9c6345295ee9a689468075802.zip | |
Further include-file cleanup
* src/sheap.c: Include stdlib.h.
* src/unexcw.c: Include string.h.
Diffstat (limited to 'src')
| -rw-r--r-- | src/sheap.c | 3 | ||||
| -rw-r--r-- | src/unexcw.c | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/sheap.c b/src/sheap.c index 106b2790367..df33353e69a 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/>. */ | |||
| 20 | 20 | ||
| 21 | #include <config.h> | 21 | #include <config.h> |
| 22 | #include <stdio.h> | 22 | #include <stdio.h> |
| 23 | |||
| 24 | #include "lisp.h" | 23 | #include "lisp.h" |
| 25 | |||
| 26 | #include <unistd.h> | 24 | #include <unistd.h> |
| 25 | #include <stdlib.h> /* for exit */ | ||
| 27 | 26 | ||
| 28 | #ifdef ENABLE_CHECKING | 27 | #ifdef ENABLE_CHECKING |
| 29 | #define STATIC_HEAP_SIZE (28 * 1024 * 1024) | 28 | #define STATIC_HEAP_SIZE (28 * 1024 * 1024) |
diff --git a/src/unexcw.c b/src/unexcw.c index be8857878eb..9583598a1cd 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/>. */ | |||
| 21 | #include <config.h> | 21 | #include <config.h> |
| 22 | #include "unexec.h" | 22 | #include "unexec.h" |
| 23 | #include "lisp.h" | 23 | #include "lisp.h" |
| 24 | 24 | #include <string.h> | |
| 25 | #include <stdio.h> | 25 | #include <stdio.h> |
| 26 | #include <fcntl.h> | 26 | #include <fcntl.h> |
| 27 | #include <a.out.h> | 27 | #include <a.out.h> |