perf tools: Remove stale prototypes from builtin.h
Some, like prune_packed_objects() are clearly git specific, others don't have implementations and some are used in just one place, make them static. Link: http://lkml.kernel.org/n/tip-faj3c5dnttf3hurv4pujut8n@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Родитель
72f7c4d22c
Коммит
a3b70b3bb3
|
@ -2,16 +2,12 @@
|
|||
#define BUILTIN_H
|
||||
|
||||
#include "util/util.h"
|
||||
#include "util/strbuf.h"
|
||||
|
||||
extern const char perf_usage_string[];
|
||||
extern const char perf_more_info_string[];
|
||||
|
||||
void list_common_cmds_help(void);
|
||||
const char *help_unknown_cmd(const char *cmd);
|
||||
void prune_packed_objects(int);
|
||||
int read_line_with_nul(char *buf, int size, FILE *file);
|
||||
int check_pager_config(const char *cmd);
|
||||
|
||||
int cmd_annotate(int argc, const char **argv);
|
||||
int cmd_bench(int argc, const char **argv);
|
||||
|
|
|
@ -91,7 +91,7 @@ static int pager_command_config(const char *var, const char *value, void *data)
|
|||
}
|
||||
|
||||
/* returns 0 for "no pager", 1 for "use pager", and -1 for "not specified" */
|
||||
int check_pager_config(const char *cmd)
|
||||
static int check_pager_config(const char *cmd)
|
||||
{
|
||||
int err;
|
||||
struct pager_config c;
|
||||
|
|
Загрузка…
Ссылка в новой задаче