19 lines
433 B
C++
19 lines
433 B
C++
// Copyright 2014 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "sandbox/linux/bpf_dsl/policy.h"
|
|
|
|
#include <errno.h>
|
|
|
|
#include "sandbox/linux/bpf_dsl/bpf_dsl.h"
|
|
|
|
namespace sandbox {
|
|
namespace bpf_dsl {
|
|
|
|
ResultExpr Policy::InvalidSyscall() const {
|
|
return Error(ENOSYS);
|
|
}
|
|
|
|
} // namespace bpf_dsl
|
|
} // namespace sandbox
|