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/fns.c | |
| parent | 0f94f94657ad7a6a68e64c612285a5e06152def2 (diff) | |
| download | emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip | |
Fix -Wimplicit warnings.
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 10 |
1 files changed, 8 insertions, 2 deletions
| @@ -21,6 +21,10 @@ Boston, MA 02111-1307, USA. */ | |||
| 21 | 21 | ||
| 22 | #include <config.h> | 22 | #include <config.h> |
| 23 | 23 | ||
| 24 | #ifdef HAVE_UNISTD_H | ||
| 25 | #include <unistd.h> | ||
| 26 | #endif | ||
| 27 | |||
| 24 | /* Note on some machines this defines `vector' as a typedef, | 28 | /* Note on some machines this defines `vector' as a typedef, |
| 25 | so make sure we don't use that name in this file. */ | 29 | so make sure we don't use that name in this file. */ |
| 26 | #undef vector | 30 | #undef vector |
| @@ -35,6 +39,9 @@ Boston, MA 02111-1307, USA. */ | |||
| 35 | #include "intervals.h" | 39 | #include "intervals.h" |
| 36 | #include "frame.h" | 40 | #include "frame.h" |
| 37 | #include "window.h" | 41 | #include "window.h" |
| 42 | #ifdef HAVE_MENUS | ||
| 43 | #include "xterm.h" | ||
| 44 | #endif | ||
| 38 | 45 | ||
| 39 | #ifndef NULL | 46 | #ifndef NULL |
| 40 | #define NULL (void *)0 | 47 | #define NULL (void *)0 |
| @@ -44,8 +51,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 44 | asked by mouse commands. */ | 51 | asked by mouse commands. */ |
| 45 | int use_dialog_box; | 52 | int use_dialog_box; |
| 46 | 53 | ||
| 47 | extern Lisp_Object Flookup_key (); | ||
| 48 | |||
| 49 | extern int minibuffer_auto_raise; | 54 | extern int minibuffer_auto_raise; |
| 50 | extern Lisp_Object minibuf_window; | 55 | extern Lisp_Object minibuf_window; |
| 51 | 56 | ||
| @@ -2545,6 +2550,7 @@ ARGS are passed as extra arguments to the function.") | |||
| 2545 | return result; | 2550 | return result; |
| 2546 | } | 2551 | } |
| 2547 | 2552 | ||
| 2553 | void | ||
| 2548 | syms_of_fns () | 2554 | syms_of_fns () |
| 2549 | { | 2555 | { |
| 2550 | Qstring_lessp = intern ("string-lessp"); | 2556 | Qstring_lessp = intern ("string-lessp"); |