fix misplaced static definition

This commit is contained in:
Pierre-Francois Carpentier 2015-12-17 21:46:45 +01:00
parent 4c908090cb
commit d6668a4d35
2 changed files with 3 additions and 1 deletions

View File

@ -0,0 +1 @@
void skeleton_daemon();

View File

@ -6,6 +6,7 @@
#include <getopt.h>
#include <argp.h>
#include <sys/syslog.h>
#include "utils.h"
const char *argp_program_version = UTS_VERSION;
@ -61,7 +62,7 @@ int main(int argc, char **argv)
args.daemonize = 0;
argp_parse (&argp, argc, argv, 0, 0, &args);
//skeleton_daemon();
skeleton_daemon();
while (1)
{