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.
|
2009-05-02 22:00:54 +02:00
|
|
|
* Copyright (c) 2007-2009, The Tor Project, Inc. */
|
2003-04-07 04:12:02 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
2008-12-23 18:56:31 +01:00
|
|
|
/** String describing which Tor subversion repository version the source was
|
|
|
|
* built from. This string is generated by a bit of shell kludging int
|
|
|
|
* src/or/Makefile.am, and is usually right.
|
|
|
|
*/
|
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
|
|
|
|