aboutsummaryrefslogtreecommitdiff
path: root/pd/src/s_entry.c
diff options
context:
space:
mode:
authorGuenter Geiger <ggeiger@users.sourceforge.net>2002-07-29 17:06:19 +0000
committerGuenter Geiger <ggeiger@users.sourceforge.net>2002-07-29 17:06:19 +0000
commit57045df5fe3ec557e57dc7434ac1a07b5521bffc (patch)
tree7174058b41b73c808107c7090d9a4e93ee202341 /pd/src/s_entry.c
parentda38b3424229e59f956252c3d89895e43e84e278 (diff)
This commit was generated by cvs2svn to compensate for changes in r58,
which included commits to RCS files with non-trunk default branches. svn path=/trunk/; revision=59
Diffstat (limited to 'pd/src/s_entry.c')
-rw-r--r--pd/src/s_entry.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/pd/src/s_entry.c b/pd/src/s_entry.c
new file mode 100644
index 00000000..354512e5
--- /dev/null
+++ b/pd/src/s_entry.c
@@ -0,0 +1,10 @@
+/* In NT, this is all there is to pd; the rest sits in a "pdlib" dll so
+that externs can link back to functions defined in pd. */
+
+
+int sys_main(int argc, char **argv);
+
+int main(int argc, char **argv)
+{
+ return (sys_main(argc, argv));
+}