seccomp: remove double include and order includes

Signed-off-by: Christian Brauner <cbrauner@suse.de>
This commit is contained in:
Christian Brauner 2016-08-19 15:20:22 +02:00
parent be038e4948
commit 567b204984
No known key found for this signature in database
GPG Key ID: 8EB056D53EECB12D

View File

@ -22,17 +22,16 @@
*/
#define _GNU_SOURCE
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <seccomp.h>
#include <errno.h>
#include <seccomp.h>
#include <sys/utsname.h>
#include <sys/mount.h>
#include <sys/utsname.h>
#include "config.h"
#include "lxcseccomp.h"
#include "log.h"
#include "lxcseccomp.h"
lxc_log_define(lxc_seccomp, lxc);