1 /* Copyright 2001-2004 Roger Dingledine. */
2 /* See LICENSE for licensing information */
4 const char tor_main_c_id
[] = "$Id$";
8 * \brief Entry point for tor binary.
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
);