1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

Remove includes of

string.h and strings.h.
(index) [HAVE_INDEX]: Add prototype.
This commit is contained in:
Gerd Moellmann 2000-09-02 19:35:49 +00:00
parent daaf40c7da
commit 8892f40bde
5 changed files with 15 additions and 28 deletions

View file

@ -1,5 +1,9 @@
2000-09-02 Gerd Moellmann <gerd@gnu.org>
* emacs.c, callint.c, doc.c, editfns.c: Remove includes of
string.h and strings.h.
(index) [HAVE_INDEX]: Add prototype.
* unexelf.c (SHT_PROGBITS) [__NetBSD__ && !PT_LOAD]: Don't define.
(SHT_MIPS_DEBUG, HDRR) [__NetBSD__ && __mips__]: Define.

View file

@ -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;

View file

@ -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;

View file

@ -42,14 +42,6 @@ Boston, MA 02111-1307, USA. */
#include "systime.h"
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#define min(a, b) ((a) < (b) ? (a) : (b))
#define max(a, b) ((a) > (b) ? (a) : (b))
@ -79,6 +71,10 @@ static Lisp_Object subst_char_in_region_unwind P_ ((Lisp_Object));
static Lisp_Object subst_char_in_region_unwind_1 P_ ((Lisp_Object));
static void transpose_markers P_ ((int, int, int, int, int, int, int, int));
#ifdef HAVE_INDEX
extern char *index P_ ((const char *, int));
#endif
Lisp_Object Vbuffer_access_fontify_functions;
Lisp_Object Qbuffer_access_fontify_functions;
Lisp_Object Vbuffer_access_fontified_property;

View file

@ -60,14 +60,6 @@ Boston, MA 02111-1307, USA. */
#include <sys/resource.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#ifndef O_RDWR
#define O_RDWR 2
#endif
@ -81,6 +73,9 @@ Boston, MA 02111-1307, USA. */
extern void malloc_warning P_ ((char *));
extern void set_time_zone_rule P_ ((char *));
#ifdef HAVE_INDEX
extern char *index P_ ((const char *, int));
#endif
/* Make these values available in GDB, which doesn't see macros. */