diff options
author | Nick Mathewson <nickm@torproject.org> | 2003-04-07 02:12:02 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2003-04-07 02:12:02 +0000 |
commit | c217b1ca711538d5c6e49a56c1047e021eb0fb3c (patch) | |
tree | 39286439eb4e9e8481fb440d1de8a7c81291c1f9 /src/or/tor_main.c | |
parent | afa95ca47c06232f7395af0f7197eab61e1d91c3 (diff) | |
download | tor-c217b1ca711538d5c6e49a56c1047e021eb0fb3c.tar.gz tor-c217b1ca711538d5c6e49a56c1047e021eb0fb3c.zip |
Add magic to end of C files to make emacs happy; split test invocation into separate file.
svn:r224
Diffstat (limited to 'src/or/tor_main.c')
-rw-r--r-- | src/or/tor_main.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/or/tor_main.c b/src/or/tor_main.c new file mode 100644 index 0000000000..aee77b9956 --- /dev/null +++ b/src/or/tor_main.c @@ -0,0 +1,18 @@ +/* Copyright 2001,2002 Roger Dingledine, Matej Pfajfar. */ +/* See LICENSE for licensing information */ +/* $Id$ */ + +int tor_main(int argc, char *argv[]); + +int main(int argc, char *argv[]) +{ + return tor_main(argc, argv); +} + +/* + Local Variables: + mode:c + indent-tabs-mode:nil + c-basic-offset:2 + End: +*/ |