aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
authorAndreas Schwab1998-04-14 12:25:56 +0000
committerAndreas Schwab1998-04-14 12:25:56 +0000
commitdfcf069d565c347abf3cb7cec80e6ed8432037ba (patch)
treecd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/fns.c
parent0f94f94657ad7a6a68e64c612285a5e06152def2 (diff)
downloademacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz
emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip
Fix -Wimplicit warnings.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index 26a1e3ea48d..e9dce29de21 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -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. */
45int use_dialog_box; 52int use_dialog_box;
46 53
47extern Lisp_Object Flookup_key ();
48
49extern int minibuffer_auto_raise; 54extern int minibuffer_auto_raise;
50extern Lisp_Object minibuf_window; 55extern 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
2553void
2548syms_of_fns () 2554syms_of_fns ()
2549{ 2555{
2550 Qstring_lessp = intern ("string-lessp"); 2556 Qstring_lessp = intern ("string-lessp");