diff options
author | Mark Murray <markm@FreeBSD.org> | 1995-09-07 21:39:00 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 1995-09-07 21:39:00 +0000 |
commit | d79d4a7ced1f3d1e2960b5cb1ebc6c2774b80ba0 (patch) | |
tree | 96ff3578d62372822240f11a1567e45b880f3910 /eBones/krb/month_sname.c | |
parent | 0e1815bb542d83bde9aed4912268f730d1637808 (diff) |
Major cleanup of eBones code:
- Get all functions prototyped or at least defined before use.
- Make code compile (Mostly) clean with -Wall set
- Start to reduce the degree to which DES aka libdes is built in.
- get all functions to the same uniform standard of definition:
int
foo(a, b)
int a;
int *b;
{
:
}
- fix numerous bugs exposed by above processes.
Note - this replaces the previous work which used an unpopular function
definition style.
Notes
Notes:
svn path=/head/; revision=10610
Diffstat (limited to 'eBones/krb/month_sname.c')
-rw-r--r-- | eBones/krb/month_sname.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eBones/krb/month_sname.c b/eBones/krb/month_sname.c index 3443e41ebda1..f4ef33994bc9 100644 --- a/eBones/krb/month_sname.c +++ b/eBones/krb/month_sname.c @@ -22,7 +22,8 @@ static char *rcsid = * month. Returns 0 if the argument is out of range. */ -char *month_sname(int n) +char *month_sname(n) + int n; { static char *name[] = { "Jan","Feb","Mar","Apr","May","Jun", |