Mon Apr 20 13:30:34 2020 UTC ()
Add missing include of <sys/atomic.h> to fix the build


(martin)
diff -r1.81 -r1.82 src/sys/miscfs/procfs/procfs_linux.c

cvs diff -r1.81 -r1.82 src/sys/miscfs/procfs/procfs_linux.c (expand / switch to context diff)
--- src/sys/miscfs/procfs/procfs_linux.c 2020/04/19 20:31:59 1.81
+++ src/sys/miscfs/procfs/procfs_linux.c 2020/04/20 13:30:34 1.82
@@ -1,4 +1,4 @@
-/*      $NetBSD: procfs_linux.c,v 1.81 2020/04/19 20:31:59 thorpej Exp $      */
+/*      $NetBSD: procfs_linux.c,v 1.82 2020/04/20 13:30:34 martin Exp $      */
 
 /*
  * Copyright (c) 2001 Wasabi Systems, Inc.
@@ -36,10 +36,11 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: procfs_linux.c,v 1.81 2020/04/19 20:31:59 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: procfs_linux.c,v 1.82 2020/04/20 13:30:34 martin Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
+#include <sys/atomic.h>
 #include <sys/time.h>
 #include <sys/cpu.h>
 #include <sys/kernel.h>