blob: a32736f8d2a4724988903aa727a3f3f88681a0d5 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-or-later */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004 */
5#ifndef _BUILTIN_H
6#define _BUILTIN_H
7
8#include <subcmd/parse-options.h>
9
10extern const struct option check_options[];
David Brazdil0f672f62019-12-10 10:32:29 +000011extern bool no_fp, no_unreachable, retpoline, module, backtrace, uaccess;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000012
13extern int cmd_check(int argc, const char **argv);
14extern int cmd_orc(int argc, const char **argv);
15
16#endif /* _BUILTIN_H */