aboutsummaryrefslogtreecommitdiff
path: root/src/or/tor_main.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2003-04-07 02:12:02 +0000
committerNick Mathewson <nickm@torproject.org>2003-04-07 02:12:02 +0000
commitc217b1ca711538d5c6e49a56c1047e021eb0fb3c (patch)
tree39286439eb4e9e8481fb440d1de8a7c81291c1f9 /src/or/tor_main.c
parentafa95ca47c06232f7395af0f7197eab61e1d91c3 (diff)
downloadtor-c217b1ca711538d5c6e49a56c1047e021eb0fb3c.tar
tor-c217b1ca711538d5c6e49a56c1047e021eb0fb3c.tar.gz
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.c18
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 000000000..aee77b995
--- /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:
+*/