summaryrefslogtreecommitdiffstats
path: root/src/util/profile/prof_parse.c
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>1995-08-15 21:20:25 +0000
committerEzra Peisach <epeisach@mit.edu>1995-08-15 21:20:25 +0000
commit6fcccb7f01145e80bfae2724a2909e59d5ea13cb (patch)
tree7a8a9dc08f16f9a23308f613032c63b435dea840 /src/util/profile/prof_parse.c
parente0b140108ef0a9e9a3e2fd4268f32c0bdabf2697 (diff)
downloadkrb5-6fcccb7f01145e80bfae2724a2909e59d5ea13cb.tar.gz
krb5-6fcccb7f01145e80bfae2724a2909e59d5ea13cb.tar.xz
krb5-6fcccb7f01145e80bfae2724a2909e59d5ea13cb.zip
* prof_parse.c (strip_line,parse_line): Declare as static
* prof_int.h: Add missing prototypes Cleanup -Wmissing_prototypes complaints git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6533 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/profile/prof_parse.c')
-rw-r--r--src/util/profile/prof_parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/profile/prof_parse.c b/src/util/profile/prof_parse.c
index 1e281e0b2c..fde563fac6 100644
--- a/src/util/profile/prof_parse.c
+++ b/src/util/profile/prof_parse.c
@@ -27,7 +27,7 @@ static char *skip_over_blanks(cp)
return cp;
}
-void strip_line(line)
+static void strip_line(line)
char *line;
{
char *p;
@@ -139,7 +139,7 @@ static errcode_t parse_std_line(line, state)
return 0;
}
-errcode_t parse_line(line, state)
+static errcode_t parse_line(line, state)
char *line;
struct parse_state *state;
{