Forward port changelog
[tor.git] / src / or / tor_main.c
blob0b446253151d8a2140ecffdd8f7545fe003e8113
1 /* Copyright 2001-2004 Roger Dingledine. */
2 /* See LICENSE for licensing information */
3 /* $Id$ */
4 const char tor_main_c_id[] = "$Id$";
6 /**
7 * \file tor_main.c
8 * \brief Entry point for tor binary.
9 **/
11 int tor_main(int argc, char *argv[]);
13 /** We keep main() in a separate file so that our unit tests can use
14 * functions from main.c)
16 int main(int argc, char *argv[])
18 return tor_main(argc, argv);