| /* Copyright 2016 The ChromiumOS Authors |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| #include "syscall_wrapper.h" |
| * Older glibc builds predate seccomp inclusion. These arches are the ones |
| * AOSP needs and doesn't provide anything newer. All other targets can upgrade |
| # elif defined(__aarch64__) |
| # error "Update your kernel headers" |
| int sys_seccomp(unsigned int operation, unsigned int flags, void *args) |
| return syscall(SYS_seccomp, operation, flags, args); |