summaryrefslogtreecommitdiffstats
path: root/PC/main_nt.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-21 15:03:37 (GMT)
committerGuido van Rossum <guido@python.org>1996-08-21 15:03:37 (GMT)
commit6dbd190f5ec3127ad7c5ef6fc67d2f02c4cc1492 (patch)
tree972a44c594f9dc3a5c2bd0c4d5136b5ed457ec3f /PC/main_nt.c
parent019f424a0a88e97e3df2e83ea6b66aa50943702f (diff)
downloadcpython-6dbd190f5ec3127ad7c5ef6fc67d2f02c4cc1492.zip
cpython-6dbd190f5ec3127ad7c5ef6fc67d2f02c4cc1492.tar.gz
cpython-6dbd190f5ec3127ad7c5ef6fc67d2f02c4cc1492.tar.bz2
NT specific files supplied by Mark Hammond
Diffstat (limited to 'PC/main_nt.c')
-rw-r--r--PC/main_nt.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/PC/main_nt.c b/PC/main_nt.c
new file mode 100644
index 0000000..5b3db05
--- /dev/null
+++ b/PC/main_nt.c
@@ -0,0 +1,37 @@
+/* -*- C -*- ***********************************************
+Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
+The Netherlands.
+
+ All Rights Reserved
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted,
+provided that the above copyright notice appear in all copies and that
+both that copyright notice and this permission notice appear in
+supporting documentation, and that the names of Stichting Mathematisch
+Centrum or CWI not be used in advertising or publicity pertaining to
+distribution of the software without specific, written prior permission.
+
+STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
+THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
+FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+******************************************************************/
+
+/* Python interpreter main program */
+
+#define HAVE_CONFIG_H
+#include "Python.h"
+#undef main
+
+int
+main(argc, argv)
+ int argc;
+ char **argv;
+{
+ return Py_Main(argc, argv);
+}