diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-11 00:46:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-11 00:46:45 +0000 |
commit | fc98d7c9a0046f274410f903f952ef6224f68e10 (patch) | |
tree | 4a39253f98074354c680698c2ae88f2a1112a17f /usr.bin/cal/cal.c | |
parent | 16a554f89dec1186c3f7232b1bf67afded92f7a0 (diff) |
use 2-char day names; from wosch@cs.tu-berlin.de
Diffstat (limited to 'usr.bin/cal/cal.c')
-rw-r--r-- | usr.bin/cal/cal.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/cal/cal.c b/usr.bin/cal/cal.c index 7b034eadf3f..e385b332e7d 100644 --- a/usr.bin/cal/cal.c +++ b/usr.bin/cal/cal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cal.c,v 1.2 1996/06/26 05:31:43 deraadt Exp $ */ +/* $OpenBSD: cal.c,v 1.3 1996/08/11 00:46:44 deraadt Exp $ */ /* $NetBSD: cal.c,v 1.6 1995/03/26 03:10:24 glass Exp $ */ /* @@ -47,7 +47,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)cal.c 8.4 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$OpenBSD: cal.c,v 1.2 1996/06/26 05:31:43 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: cal.c,v 1.3 1996/08/11 00:46:44 deraadt Exp $"; #endif #endif /* not lint */ @@ -103,8 +103,8 @@ char *month_names[12] = { "July", "August", "September", "October", "November", "December", }; -char *day_headings = " S M Tu W Th F S"; -char *j_day_headings = " S M Tu W Th F S"; +char *day_headings = "Su Mo Tu We Th Fr Sa"; +char *j_day_headings = " Su Mo Tu We Th Fr Sa"; /* leap year -- account for gregorian reformation in 1752 */ #define leap_year(yr) \ |