diff options
author | Gerd Moellmann <gerd@gnu.org> | 2002-03-12 10:12:20 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2002-03-12 10:12:20 +0000 |
commit | 656132ebd3ac2359182c1bf8822253c60bbdb153 (patch) | |
tree | 4bbdc0d2e64d015d3cac3c47c92519bbc8096861 /src/xsmfns.c | |
parent | 4006b74e367da694696bd19773706c0ce69e19a1 (diff) | |
download | emacs-656132ebd3ac2359182c1bf8822253c60bbdb153.tar.gz |
Include stdio.h because termhooks.h needs it.
Include termopt.h for interrupt_input.
Diffstat (limited to 'src/xsmfns.c')
-rw-r--r-- | src/xsmfns.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xsmfns.c b/src/xsmfns.c index fe0570b665a..f0329b2559b 100644 --- a/src/xsmfns.c +++ b/src/xsmfns.c @@ -1,6 +1,6 @@ /* Session management module for systems which understand the X Session management protocol. - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2002 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -40,11 +40,13 @@ Boston, MA 02111-1307, USA. */ #endif #include <sys/param.h> +#include <stdio.h> #include "systime.h" #include "sysselect.h" #include "lisp.h" #include "termhooks.h" +#include "termopts.h" #ifndef MAXPATHLEN #define MAXPATHLEN 1024 |