summaryrefslogtreecommitdiff
path: root/miniperlmain.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2004-07-31 16:21:50 +0000
committerDave Mitchell <davem@fdisolutions.com>2004-07-31 16:21:50 +0000
commit166f8a29442475f7fe0e9216f957512a793bc4ed (patch)
tree8e8ad9e187566d63a5ce23b4a3f7591a036f3d69 /miniperlmain.c
parentd75b63cf816cfa51767ad10e3bdb7a0c01242457 (diff)
downloadperl-166f8a29442475f7fe0e9216f957512a793bc4ed.tar.gz
Add comment to the top of most .c files explaining their purpose
p4raw-id: //depot/perl@23176
Diffstat (limited to 'miniperlmain.c')
-rw-r--r--miniperlmain.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/miniperlmain.c b/miniperlmain.c
index 4e9e5e889e..3cc25f80f9 100644
--- a/miniperlmain.c
+++ b/miniperlmain.c
@@ -12,6 +12,15 @@
* "The Road goes ever on and on, down from the door where it began."
*/
+/* This file contains the main() function for the perl interpreter.
+ * Note that miniperlmain.c contains main() for the 'miniperl' binary,
+ * while perlmain.c contains main() for the 'perl' binary.
+ *
+ * Miniperl is like perl except that does not support dynamic loading,
+ * and in fact is used to build the dynamic modules need for the 'real'
+ * perl execuable.
+ */
+
#ifdef OEMVS
#ifdef MYMALLOC
/* sbrk is limited to first heap segement so make it big */