1 /* Copyright 2001-2004 Roger Dingledine.
2 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
3 * Copyright (c) 2007-2009, The Tor Project, Inc. */
4 /* See LICENSE for licensing information */
6 /** String describing which Tor subversion repository version the source was
7 * built from. This string is generated by a bit of shell kludging int
8 * src/or/Makefile.am, and is usually right.
10 const char tor_svn_revision
[] =
12 #include "micro-revision.i"
18 * \brief Stub module containing a main() function. Allows unit
19 * test binary to link against main.c.
22 int tor_main(int argc
, char *argv
[]);
24 /** We keep main() in a separate file so that our unit tests can use
25 * functions from main.c)
28 main(int argc
, char *argv
[])
30 return tor_main(argc
, argv
);