diff options
author | Mattias Andrée <maandree@kth.se> | 2020-06-21 09:46:05 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2020-06-21 09:46:05 +0200 |
commit | 50467c0f6617bd885ef616a63832da68a94a4cb9 (patch) | |
tree | 8c56319d0492c047589f7390cf9a83e0102a7a90 /print.c | |
parent | Fix typo in list-errnos.h command (diff) | |
download | sctrace-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>
Diffstat (limited to '')
-rw-r--r-- | print.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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> |