Module Name: src
Committed By: martin
Date: Tue Jan 9 13:56:00 UTC 2018
Modified Files:
src/sys/fs/autofs: autofs.c
Log Message:
Include <sys/atomic.h> for the atomic funtions used in here.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/fs/autofs/autofs.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/fs/autofs/autofs.c
diff -u src/sys/fs/autofs/autofs.c:1.1 src/sys/fs/autofs/autofs.c:1.2
--- src/sys/fs/autofs/autofs.c:1.1 Tue Jan 9 03:31:14 2018
+++ src/sys/fs/autofs/autofs.c Tue Jan 9 13:56:00 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: autofs.c,v 1.1 2018/01/09 03:31:14 christos Exp $ */
+/* $NetBSD: autofs.c,v 1.2 2018/01/09 13:56:00 martin Exp $ */
/*-
* Copyright (c) 2017 The NetBSD Foundation, Inc.
@@ -68,10 +68,11 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autofs.c,v 1.1 2018/01/09 03:31:14 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autofs.c,v 1.2 2018/01/09 13:56:00 martin Exp $");
#include "autofs.h"
+#include <sys/atomic.h>
#include <sys/queue.h>
#include <sys/signalvar.h>