fix typo
[tor.git] / src / or / tor_main.c
blob21fbe3efb5dc106f59964296a7d57a928ecc63fd
1 /* Copyright 2001-2004 Roger Dingledine.
2 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
3 * Copyright (c) 2007-2016, The Tor Project, Inc. */
4 /* See LICENSE for licensing information */
6 extern const char tor_git_revision[];
8 /** String describing which Tor Git repository version the source was
9 * built from. This string is generated by a bit of shell kludging in
10 * src/or/include.am, and is usually right.
12 const char tor_git_revision[] =
13 #ifndef _MSC_VER
14 #include "micro-revision.i"
15 #endif
16 "";
18 /**
19 * \file tor_main.c
20 * \brief Stub module containing a main() function. Allows unit
21 * test binary to link against main.c.
22 **/
24 int tor_main(int argc, char *argv[]);
26 /** We keep main() in a separate file so that our unit tests can use
27 * functions from main.c)
29 int
30 main(int argc, char *argv[])
32 int r = tor_main(argc, argv);
33 if (r < 0 || r > 255)
34 return 1;
35 else
36 return r;