aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2020-06-21 09:46:05 +0200
committerMattias Andrée <maandree@kth.se>2020-06-21 09:46:05 +0200
commit50467c0f6617bd885ef616a63832da68a94a4cb9 (patch)
tree8c56319d0492c047589f7390cf9a83e0102a7a90
parentFix typo in list-errnos.h command (diff)
downloadsctrace-50467c0f6617bd885ef616a63832da68a94a4cb9.tar.gz
sctrace-50467c0f6617bd885ef616a63832da68a94a4cb9.tar.bz2
sctrace-50467c0f6617bd885ef616a63832da68a94a4cb9.tar.xz
Move inclusion of <linux/fs.h> to after <sys/mount.h>, will not build otherwise
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/print.c b/print.c
index a8e9621..95a324a 100644
--- a/print.c
+++ b/print.c
@@ -1,12 +1,12 @@
/* See LICENSE file for copyright and license details. */
#include "common.h"
-#include <linux/fs.h>
#include <linux/memfd.h>
#include <sys/epoll.h>
#include <sys/inotify.h>
#include <sys/mman.h>
#include <sys/mount.h>
+#include <linux/fs.h> /* after <sys/mount.h> */
#include <sys/random.h>
#include <sys/socket.h>
#include <sys/xattr.h>