diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-06-11 18:52:12 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-06-11 18:52:12 +0000 |
commit | 232861ba42c176a98fdaa2792ae2930a759723f1 (patch) | |
tree | 89a578abc3840bd24b5535b75b655e17b13bfd41 /src/or/tor_main.c | |
parent | df029fc9df2e58f7bc225f0a61217bcc9c60e91b (diff) | |
download | tor-232861ba42c176a98fdaa2792ae2930a759723f1.tar.gz tor-232861ba42c176a98fdaa2792ae2930a759723f1.zip |
Docment or add DOCDOC comments to undocumented functions in src/or. Make function definition format uniform.
svn:r4411
Diffstat (limited to 'src/or/tor_main.c')
-rw-r--r-- | src/or/tor_main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/tor_main.c b/src/or/tor_main.c index a33c6550bc..404cb34beb 100644 --- a/src/or/tor_main.c +++ b/src/or/tor_main.c @@ -15,7 +15,8 @@ int tor_main(int argc, char *argv[]); /** We keep main() in a separate file so that our unit tests can use * functions from main.c) */ -int main(int argc, char *argv[]) +int +main(int argc, char *argv[]) { return tor_main(argc, argv); } |