2005-04-01 22:15:56 +02:00
|
|
|
/* Copyright 2001-2004 Roger Dingledine.
|
2007-12-12 22:09:01 +01:00
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
2008-02-07 06:31:47 +01:00
|
|
|
* Copyright (c) 2007-2008, The Tor Project, Inc. */
|
2003-04-07 04:12:02 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
2005-12-14 21:40:40 +01:00
|
|
|
const char tor_main_c_id[] =
|
|
|
|
"$Id$";
|
2003-04-07 04:12:02 +02:00
|
|
|
|
2007-04-17 01:56:31 +02:00
|
|
|
const char tor_svn_revision[] =
|
2007-04-30 16:52:02 +02:00
|
|
|
#ifndef _MSC_VER
|
2007-04-17 01:56:31 +02:00
|
|
|
#include "micro-revision.i"
|
2007-04-30 16:52:02 +02:00
|
|
|
#endif
|
2007-04-17 01:56:31 +02:00
|
|
|
"";
|
|
|
|
|
2004-05-10 04:43:41 +02:00
|
|
|
/**
|
|
|
|
* \file tor_main.c
|
2005-06-11 07:31:17 +02:00
|
|
|
* \brief Stub module containing a main() function. Allows unit
|
|
|
|
* test binary to link against main.c.
|
2004-05-10 04:43:41 +02:00
|
|
|
**/
|
2004-05-05 23:32:43 +02:00
|
|
|
|
2003-04-07 04:12:02 +02:00
|
|
|
int tor_main(int argc, char *argv[]);
|
|
|
|
|
2004-05-10 04:43:41 +02:00
|
|
|
/** We keep main() in a separate file so that our unit tests can use
|
|
|
|
* functions from main.c)
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
2003-04-07 04:12:02 +02:00
|
|
|
{
|
|
|
|
return tor_main(argc, argv);
|
|
|
|
}
|
2005-06-09 21:03:31 +02:00
|
|
|
|