From 5352496984d550bd441b12a082d5a382c168cbe2 Mon Sep 17 00:00:00 2001 From: Frederic Culot Date: Sun, 28 Dec 2008 13:13:58 +0000 Subject: Added wrappers around libc's memory management functions, to easily debug memory usage --- src/calcurse.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/calcurse.c') diff --git a/src/calcurse.c b/src/calcurse.c index 451d616..67253b9 100755 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -1,4 +1,4 @@ -/* $calcurse: calcurse.c,v 1.73 2008/12/20 19:27:31 culot Exp $ */ +/* $calcurse: calcurse.c,v 1.74 2008/12/28 13:13:59 culot Exp $ */ /* * Calcurse - text-based organizer @@ -24,13 +24,13 @@ * */ -#ifdef HAVE_CONFIG_H -#include -#endif /* HAVE_CONFIG_H */ - #include #include +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif /* HAVE_CONFIG_H */ + #include "i18n.h" #include "io.h" #include "help.h" @@ -86,7 +86,7 @@ main (int argc, char **argv) */ non_interactive = parse_args (argc, argv, &conf); if (non_interactive) - return (EXIT_SUCCESS); + exit_calcurse (EXIT_SUCCESS); /* Begin of interactive mode with ncurses interface. */ sigs_init (&sigact); /* signal handling init */ -- cgit v1.2.3-54-g00ecf