diff options
author | Frederic Culot <calcurse@culot.org> | 2010-03-20 10:54:41 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2010-03-20 10:54:41 +0000 |
commit | a8cb1c92eff88acc685d7d876647844bacb71e8e (patch) | |
tree | d5aead8428a5da50e05aa137bfd909aa117793aa /src/dmon.c | |
parent | 689be2947439e896b61fde0f84a7707dc367cd4a (diff) | |
download | calcurse-a8cb1c92eff88acc685d7d876647844bacb71e8e.zip |
All headers gathered into a single one. Typedefs suppressed.
Diffstat (limited to 'src/dmon.c')
-rw-r--r-- | src/dmon.c | 16 |
1 files changed, 5 insertions, 11 deletions
@@ -1,9 +1,9 @@ -/* $calcurse: dmon.c,v 1.11 2009/08/01 20:29:49 culot Exp $ */ +/* $calcurse: dmon.c,v 1.12 2010/03/20 10:54:44 culot Exp $ */ /* * Calcurse - text-based organizer * - * Copyright (c) 2009 Frederic Culot <frederic@culot.org> + * Copyright (c) 2009-2010 Frederic Culot <frederic@culot.org> * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -43,15 +43,9 @@ #include <fcntl.h> #include <errno.h> #include <string.h> +#include <signal.h> -#include "utils.h" -#include "i18n.h" -#include "sigs.h" -#include "mem.h" -#include "io.h" -#include "custom.h" -#include "notify.h" -#include "dmon.h" +#include "calcurse.h" #define DMON_SLEEP_TIME 60 @@ -162,7 +156,7 @@ daemonize (int status) void dmon_start (int parent_exit_status) { - conf_t conf; + struct conf conf; if (!daemonize (parent_exit_status)) DMON_ABRT (_("Cannot daemonize, aborting\n")); |