Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNanako Shiraishi <nanako3@lavabit.com>2008-10-02 14:14:27 +0400
committerShawn O. Pearce <spearce@spearce.org>2008-10-03 05:03:35 +0400
commit0433bcd9f01b9113a02831c13e364c6a89a0047a (patch)
tree45d1ea4a2176a496e00e75e0213ba28a9a7c7dc1 /cache.h
parent7996ff335e675b229398974f6cbf459843c9bf6d (diff)
config.c: make git_parse_long() static
This function is not used in any other file. Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index 99af83a047..7027c896bf 100644
--- a/cache.h
+++ b/cache.h
@@ -749,7 +749,6 @@ typedef int (*config_fn_t)(const char *, const char *, void *);
extern int git_default_config(const char *, const char *, void *);
extern int git_config_from_file(config_fn_t fn, const char *, void *);
extern int git_config(config_fn_t fn, void *);
-extern int git_parse_long(const char *, long *);
extern int git_parse_ulong(const char *, unsigned long *);
extern int git_config_int(const char *, const char *);
extern unsigned long git_config_ulong(const char *, const char *);