summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1996-08-11 00:46:44 +0000
committerderaadt <deraadt@openbsd.org>1996-08-11 00:46:44 +0000
commit31d81a0dd086f2d6c92a4c009519f63f4924ef28 (patch)
treeddeb96f61a723605d3158fbc43d670541d2a884b
parentone incorrect variable; jin@george.lbl.gov via freebsd (diff)
downloadwireguard-openbsd-31d81a0dd086f2d6c92a4c009519f63f4924ef28.tar.xz
wireguard-openbsd-31d81a0dd086f2d6c92a4c009519f63f4924ef28.zip
use 2-char day names; from wosch@cs.tu-berlin.de
-rw-r--r--usr.bin/cal/cal.c8
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) \