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/doc.c | |
parent | daaf40c7dabd004635454864b859b8fbd0a7c1da (diff) | |
download | emacs-8892f40bde07b11c5e2c24719acbcf7239f42de3.tar.gz |
Remove includes of
string.h and strings.h.
(index) [HAVE_INDEX]: Add prototype.
Diffstat (limited to 'src/doc.c')
-rw-r--r-- | src/doc.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/doc.c b/src/doc.c index 52545c1f3fc..ee0a28d1621 100644 --- a/src/doc.c +++ b/src/doc.c @@ -41,12 +41,8 @@ Boston, MA 02111-1307, USA. */ #include "keyboard.h" #include "charset.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 Lisp_Object Vdoc_file_name, Vhelp_manyarg_func_alist; |