aboutsummaryrefslogtreecommitdiff
path: root/coreutils/cal.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/cal.c')
-rw-r--r--coreutils/cal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/cal.c b/coreutils/cal.c
index d9456ed9e..a134380c3 100644
--- a/coreutils/cal.c
+++ b/coreutils/cal.c
@@ -88,9 +88,9 @@ static int is_leap_year(int year)
88#define leap_years_since_year_1(yr) \ 88#define leap_years_since_year_1(yr) \
89 ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr)) 89 ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr))
90 90
91static void center __P((char *, int, int)); 91static void center (char *, int, int);
92static void day_array __P((int, int, int *)); 92static void day_array (int, int, int *);
93static void trim_trailing_spaces_and_print __P((char *)); 93static void trim_trailing_spaces_and_print (char *);
94 94
95static void blank_string(char *buf, size_t buflen); 95static void blank_string(char *buf, size_t buflen);
96static char *build_row(char *p, int *dp); 96static char *build_row(char *p, int *dp);