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/gui/main.c | |
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/gui/main.c')
-rw-r--r-- | calendar/gui/main.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/calendar/gui/main.c b/calendar/gui/main.c index 92c68898e8..00c13edb16 100644 --- a/calendar/gui/main.c +++ b/calendar/gui/main.c @@ -12,10 +12,12 @@ #include <pwd.h> #include <sys/types.h> +#include "alarm.h" #include "calendar.h" #include "eventedit.h" #include "gnome-cal.h" #include "main.h" +#include "timeutil.h" /* The username, used to set the `owner' field of the event */ char *user_name; @@ -439,6 +441,8 @@ dump_events (void) exit (0); } +extern time_t get_date (); + static error_t parse_an_arg (int key, char *arg, struct argp_state *state) { @@ -477,8 +481,6 @@ static struct argp parser = int main(int argc, char *argv[]) { - GnomeClient *client; - argp_program_version = VERSION; bindtextdomain(PACKAGE, GNOMELOCALEDIR); |