mirror of
https://github.com/git/git.git
synced 2024-11-18 17:23:49 +01:00
More missing static
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
2d93b9face
commit
fcd056a6d2
@ -851,8 +851,8 @@ static void handle_info(void)
|
||||
fprintf(fout, "\n");
|
||||
}
|
||||
|
||||
int mailinfo(FILE *in, FILE *out, int ks, const char *encoding,
|
||||
const char *msg, const char *patch)
|
||||
static int mailinfo(FILE *in, FILE *out, int ks, const char *encoding,
|
||||
const char *msg, const char *patch)
|
||||
{
|
||||
keep_subject = ks;
|
||||
metainfo_charset = encoding;
|
||||
|
@ -159,8 +159,8 @@ out:
|
||||
return ret;
|
||||
}
|
||||
|
||||
int split_mbox(const char *file, const char *dir, int allow_bare,
|
||||
int nr_prec, int skip)
|
||||
static int split_mbox(const char *file, const char *dir, int allow_bare,
|
||||
int nr_prec, int skip)
|
||||
{
|
||||
char name[PATH_MAX];
|
||||
int ret = -1;
|
||||
|
@ -7,8 +7,6 @@ extern const char git_version_string[];
|
||||
extern const char git_usage_string[];
|
||||
|
||||
extern void help_unknown_cmd(const char *cmd);
|
||||
extern int mailinfo(FILE *in, FILE *out, int ks, const char *encoding, const char *msg, const char *patch);
|
||||
extern int split_mbox(const char *file, const char *dir, int allow_bare, int nr_prec, int skip);
|
||||
extern void stripspace(FILE *in, FILE *out);
|
||||
extern int write_tree(unsigned char *sha1, int missing_ok, const char *prefix);
|
||||
extern void prune_packed_objects(int);
|
||||
|
Loading…
Reference in New Issue
Block a user