Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-09-20 01:25:13 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-09-20 01:25:13 +0400
commit27af64ef463966c87a81175d2d917595eaac6a74 (patch)
tree609cc32bceafb5aecafad08b6756bb07ee460349 /src/node_main.cc
parent8e246acd0e80d35356be6c592289487549a49300 (diff)
Forgot to include node_main.cc
Diffstat (limited to 'src/node_main.cc')
-rw-r--r--src/node_main.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/node_main.cc b/src/node_main.cc
new file mode 100644
index 00000000000..9a241bf4a89
--- /dev/null
+++ b/src/node_main.cc
@@ -0,0 +1,7 @@
+// Copyright 2010 Ryan Dahl <ry@tinyclouds.org>
+
+#include <node.h>
+
+int main(int argc, char *argv[]) {
+ return node::Start(argc, argv);
+}