diff options
author | Mark Murray <markm@FreeBSD.org> | 1999-05-02 14:33:17 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 1999-05-02 14:33:17 +0000 |
commit | ef0775c4f054d9bcacbc3f94478687691d11226b (patch) | |
tree | 6ba8453a691190ab1f96748cae95df2e54cb3c2c /contrib/perl5/miniperlmain.c | |
parent | 0feb57945e44edd6419789b4f64868d2937bc553 (diff) | |
parent | 7c312e6b6a7b1f9412f10365baf3c5eca8fa5649 (diff) |
This commit was generated by cvs2svn to compensate for changes in r46307,
which included commits to RCS files with non-trunk default branches.
Notes
Notes:
svn path=/head/; revision=46308
Diffstat (limited to 'contrib/perl5/miniperlmain.c')
-rw-r--r-- | contrib/perl5/miniperlmain.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/perl5/miniperlmain.c b/contrib/perl5/miniperlmain.c index 4eb1dcdd6fdf..cfbe95b73648 100644 --- a/contrib/perl5/miniperlmain.c +++ b/contrib/perl5/miniperlmain.c @@ -13,6 +13,12 @@ static void xs_init _((void)); static PerlInterpreter *my_perl; +#if defined (__MINT__) || defined (atarist) +/* The Atari operating system doesn't have a dynamic stack. The + stack size is determined from this value. */ +long _stksize = 64 * 1024; +#endif + int main(int argc, char **argv, char **env) { |