diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-21 06:13:36 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-21 06:13:36 +0800 |
commit | e9a7215277ccb59d126cd0981d148744068ed148 (patch) | |
tree | 16ce2125e88d3cd92a10f7eded7c4ae958455a69 /calendar/timeutil.h | |
parent | 3acbe7a46f8c3af807ed56b997e2995e45a2fafe (diff) | |
download | gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.tar gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.tar.gz gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.tar.bz2 gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.tar.lz gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.tar.xz gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.tar.zst gsoc2013-evolution-e9a7215277ccb59d126cd0981d148744068ed148.zip |
Fix compiler warnings - Federico
svn path=/trunk/; revision=170
Diffstat (limited to 'calendar/timeutil.h')
-rw-r--r-- | calendar/timeutil.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/calendar/timeutil.h b/calendar/timeutil.h index f78b1acee7..9c9d2d8a80 100644 --- a/calendar/timeutil.h +++ b/calendar/timeutil.h @@ -18,8 +18,9 @@ time_t time_from_start_duration (time_t start, char *duration); char *isodate_from_time_t (time_t t); int get_time_t_hour (time_t t); -time_t time_add_week (time_t time, int weeks); +time_t time_add_minutes (time_t time, int minutes); time_t time_add_day (time_t time, int days); +time_t time_add_week (time_t time, int weeks); time_t time_add_year (time_t time, int years); @@ -36,8 +37,6 @@ time_t time_year_begin (int year); time_t time_year_end (int year); time_t time_week_begin (time_t t); time_t parse_date (char *str); -time_t time_add_minutes (time_t time, int minutes); -time_t time_add_day (time_t time, int days); void print_time_t (time_t t); |