Deleted Added
full compact
histsearch.c (21308) histsearch.c (35486)
1/* histsearch.c -- searching the history list. */
2
3/* Copyright (C) 1989, 1992 Free Software Foundation, Inc.
4
5 This file contains the GNU History Library (the Library), a set of
6 routines for managing the text of previously typed lines.
7
8 The Library is free software; you can redistribute it and/or modify

--- 19 unchanged lines hidden (view full) ---

28
29#include <stdio.h>
30#if defined (HAVE_STDLIB_H)
31# include <stdlib.h>
32#else
33# include "ansi_stdlib.h"
34#endif /* HAVE_STDLIB_H */
35#if defined (HAVE_UNISTD_H)
1/* histsearch.c -- searching the history list. */
2
3/* Copyright (C) 1989, 1992 Free Software Foundation, Inc.
4
5 This file contains the GNU History Library (the Library), a set of
6 routines for managing the text of previously typed lines.
7
8 The Library is free software; you can redistribute it and/or modify

--- 19 unchanged lines hidden (view full) ---

28
29#include <stdio.h>
30#if defined (HAVE_STDLIB_H)
31# include <stdlib.h>
32#else
33# include "ansi_stdlib.h"
34#endif /* HAVE_STDLIB_H */
35#if defined (HAVE_UNISTD_H)
36# ifdef _MINIX
37# include <sys/types.h>
38# endif
36# include <unistd.h>
37#endif
38#if defined (HAVE_STRING_H)
39# include <string.h>
40#else
41# include <strings.h>
42#endif /* !HAVE_STRING_H */
43

--- 154 unchanged lines hidden ---
39# include <unistd.h>
40#endif
41#if defined (HAVE_STRING_H)
42# include <string.h>
43#else
44# include <strings.h>
45#endif /* !HAVE_STRING_H */
46

--- 154 unchanged lines hidden ---