diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-09-02 19:35:49 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-09-02 19:35:49 +0000 |
commit | 8892f40bde07b11c5e2c24719acbcf7239f42de3 (patch) | |
tree | 433299881b5afea3f22dce1a37c6ad7d5c334ae7 /src/callint.c | |
parent | daaf40c7dabd004635454864b859b8fbd0a7c1da (diff) | |
download | emacs-8892f40bde07b11c5e2c24719acbcf7239f42de3.tar.gz emacs-8892f40bde07b11c5e2c24719acbcf7239f42de3.tar.bz2 emacs-8892f40bde07b11c5e2c24719acbcf7239f42de3.zip |
Remove includes of
string.h and strings.h.
(index) [HAVE_INDEX]: Add prototype.
Diffstat (limited to 'src/callint.c')
-rw-r--r-- | src/callint.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/callint.c b/src/callint.c index 88743b83980..5289bfa3853 100644 --- a/src/callint.c +++ b/src/callint.c @@ -27,12 +27,8 @@ Boston, MA 02111-1307, USA. */ #include "window.h" #include "mocklisp.h" -#ifdef HAVE_STRING_H -#include <string.h> -#endif - -#ifdef HAVE_STRINGS_H -#include <strings.h> +#ifdef HAVE_INDEX +extern char *index P_ ((const char *, int)); #endif extern Lisp_Object Qcursor_in_echo_area; |