| 1 | /* miniperlmain.c
|
|---|
| 2 | *
|
|---|
| 3 | * Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003,
|
|---|
| 4 | * 2004, 2005 by Larry Wall and others
|
|---|
| 5 | *
|
|---|
| 6 | * You may distribute under the terms of either the GNU General Public
|
|---|
| 7 | * License or the Artistic License, as specified in the README file.
|
|---|
| 8 | *
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | /*
|
|---|
| 12 | * "The Road goes ever on and on, down from the door where it began."
|
|---|
| 13 | */
|
|---|
| 14 |
|
|---|
| 15 | /* This file contains the main() function for the perl interpreter.
|
|---|
| 16 | * Note that miniperlmain.c contains main() for the 'miniperl' binary,
|
|---|
| 17 | * while perlmain.c contains main() for the 'perl' binary.
|
|---|
| 18 | *
|
|---|
| 19 | * Miniperl is like perl except that it does not support dynamic loading,
|
|---|
| 20 | * and in fact is used to build the dynamic modules needed for the 'real'
|
|---|
| 21 | * perl executable.
|
|---|
| 22 | */
|
|---|
| 23 |
|
|---|
| 24 | #ifdef OEMVS
|
|---|
| 25 | #ifdef MYMALLOC
|
|---|
| 26 | /* sbrk is limited to first heap segment so make it big */
|
|---|
| 27 | #pragma runopts(HEAP(8M,500K,ANYWHERE,KEEP,8K,4K) STACK(,,ANY,) ALL31(ON))
|
|---|
|
|---|