aboutsummaryrefslogtreecommitdiffstats
path: root/src/filelock.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/filelock.c
parent0f94f94657ad7a6a68e64c612285a5e06152def2 (diff)
downloademacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz
emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip
Fix -Wimplicit warnings.
Diffstat (limited to 'src/filelock.c')
-rw-r--r--src/filelock.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/filelock.c b/src/filelock.c
index 134b3808acd..50e86536268 100644
--- a/src/filelock.c
+++ b/src/filelock.c
@@ -20,6 +20,7 @@ Boston, MA 02111-1307, USA. */
20 20
21#include <sys/types.h> 21#include <sys/types.h>
22#include <sys/stat.h> 22#include <sys/stat.h>
23#include <signal.h>
23#include <config.h> 24#include <config.h>
24 25
25#ifdef VMS 26#ifdef VMS
@@ -34,6 +35,10 @@ Boston, MA 02111-1307, USA. */
34#include <string.h> 35#include <string.h>
35#endif /* USG */ 36#endif /* USG */
36 37
38#ifdef HAVE_UNISTD_H
39#include <unistd.h>
40#endif
41
37#include "lisp.h" 42#include "lisp.h"
38#include "buffer.h" 43#include "buffer.h"
39 44
@@ -515,6 +520,7 @@ t if it is locked by you, else a string of the name of the locker.")
515 520
516/* Initialization functions. */ 521/* Initialization functions. */
517 522
523void
518syms_of_filelock () 524syms_of_filelock ()
519{ 525{
520 defsubr (&Sunlock_buffer); 526 defsubr (&Sunlock_buffer);