/**
 * Copyright (c) 2025 Huawei Technologies Co., Ltd.
 * This program is free software, you can redistribute it and/or modify it under the terms and conditions of
 * CANN Open Software License Agreement Version 2.0 (the "License").
 * Please refer to the License for details. You may not use this file except in compliance with the License.
 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
 * INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
 * See LICENSE in the root of the software repository for the full text of the License.
 */
#include "seccomp.h"

int seccomp_rule_add(scmp_filter_ctx ctx,
		     uint32_t action, int syscall, unsigned int arg_cnt, ...)
{
    (void) ctx;
    (void) action;
    (void) syscall;
    (void) arg_cnt;
    return 0;
}

scmp_filter_ctx seccomp_init(uint32_t def_action)
{
    (void) def_action;
    return nullptr;
}

int seccomp_load(const scmp_filter_ctx ctx)
{
    (void) ctx;
    return 0;
}

int seccomp_syscall_resolve_name(const char *name)
{
    (void) name;
    return 0;
}