--- embedtools/src/wdog.c 2010/10/16 03:30:51 1.1 +++ embedtools/src/wdog.c 2010/10/16 03:30:51 1.1.2.1 @@ -0,0 +1,33 @@ +/************************************************************************* + * (C) 2010 AITNET - Sofia/Bulgaria - + * by Michael Pounov + * + * $Author: misho $ + * $Id: wdog.c,v 1.1.2.1 2010/10/16 03:30:51 misho Exp $ + * + *************************************************************************/ +#include "global.h" + + +int Verbose; +extern char compiled[], compiledby[], compilehost[]; + + +static void +Usage() +{ + + printf( "WatchDog tool for risk process managment\n" + "=== %s === %s@%s ===\n\n" + " Syntax: wdog [options] [exec_file]\n\n" + "\t-v\t\tVerbose ...\n" + "\t-u \tAfter execute suid to user [default=root]\n" + "\n", compiled, compiledby, compilehost); +} + + +int +main(int argc, char **argv) +{ + return 0; +}