diff options
| author | Andreas Schwab | 1998-04-14 12:25:56 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-04-14 12:25:56 +0000 |
| commit | dfcf069d565c347abf3cb7cec80e6ed8432037ba (patch) | |
| tree | cd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/editfns.c | |
| parent | 0f94f94657ad7a6a68e64c612285a5e06152def2 (diff) | |
| download | emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip | |
Fix -Wimplicit warnings.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/editfns.c b/src/editfns.c index fe419944553..7699da52d9e 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -29,6 +29,14 @@ Boston, MA 02111-1307, USA. */ | |||
| 29 | #include <pwd.h> | 29 | #include <pwd.h> |
| 30 | #endif | 30 | #endif |
| 31 | 31 | ||
| 32 | #ifdef STDC_HEADERS | ||
| 33 | #include <stdlib.h> | ||
| 34 | #endif | ||
| 35 | |||
| 36 | #ifdef HAVE_UNISTD_H | ||
| 37 | #include <unistd.h> | ||
| 38 | #endif | ||
| 39 | |||
| 32 | #include "lisp.h" | 40 | #include "lisp.h" |
| 33 | #include "intervals.h" | 41 | #include "intervals.h" |
| 34 | #include "buffer.h" | 42 | #include "buffer.h" |