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/search.c | |
| parent | 0f94f94657ad7a6a68e64c612285a5e06152def2 (diff) | |
| download | emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip | |
Fix -Wimplicit warnings.
Diffstat (limited to 'src/search.c')
| -rw-r--r-- | src/search.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/search.c b/src/search.c index ed93d5087d3..61d960ee867 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -20,6 +20,9 @@ Boston, MA 02111-1307, USA. */ | |||
| 20 | 20 | ||
| 21 | 21 | ||
| 22 | #include <config.h> | 22 | #include <config.h> |
| 23 | #ifdef STDC_HEADERS | ||
| 24 | #include <stdlib.h> | ||
| 25 | #endif | ||
| 23 | #include "lisp.h" | 26 | #include "lisp.h" |
| 24 | #include "syntax.h" | 27 | #include "syntax.h" |
| 25 | #include "category.h" | 28 | #include "category.h" |
| @@ -515,6 +518,7 @@ newline_cache_on_off (buf) | |||
| 515 | If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do | 518 | If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do |
| 516 | except when inside redisplay. */ | 519 | except when inside redisplay. */ |
| 517 | 520 | ||
| 521 | int | ||
| 518 | scan_buffer (target, start, end, count, shortage, allow_quit) | 522 | scan_buffer (target, start, end, count, shortage, allow_quit) |
| 519 | register int target; | 523 | register int target; |
| 520 | int start, end; | 524 | int start, end; |
| @@ -2715,6 +2719,7 @@ DEFUN ("regexp-quote", Fregexp_quote, Sregexp_quote, 1, 1, 0, | |||
| 2715 | STRING_MULTIBYTE (string)); | 2719 | STRING_MULTIBYTE (string)); |
| 2716 | } | 2720 | } |
| 2717 | 2721 | ||
| 2722 | void | ||
| 2718 | syms_of_search () | 2723 | syms_of_search () |
| 2719 | { | 2724 | { |
| 2720 | register int i; | 2725 | register int i; |