*** empty log message ***
[bpt/guile.git] / libguile / init.c
CommitLineData
37c7371d 1/* Copyright (C) 1995,1996,1997,1998,1999 Free Software Foundation, Inc.
0f2d19dd
JB
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
0f2d19dd
JB
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
82892bed 40 * If you do not wish that, delete this exception notice. */
1bbd0b84
GB
41
42/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
43 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
44
0f2d19dd 45\f
bdca1083
JB
46/* Include the headers for just about everything.
47 We call all their initialization functions. */
0f2d19dd
JB
48
49#include <stdio.h>
0a48b624
MV
50#include <sys/stat.h>
51#include <fcntl.h>
52
0f2d19dd
JB
53#include "_scm.h"
54
20e6290e
JB
55/* Everybody has an init function. */
56#include "alist.h"
20e6290e
JB
57#include "arbiters.h"
58#include "async.h"
0e44fcca 59#include "backtrace.h"
20e6290e
JB
60#include "boolean.h"
61#include "chars.h"
62#include "continuations.h"
63#ifdef DEBUG_EXTENSIONS
64#include "debug.h"
65#endif
70122cd3 66#include "dynl.h"
20e6290e
JB
67#include "dynwind.h"
68#include "eq.h"
69#include "error.h"
70#include "eval.h"
27a69f93 71#include "evalext.h"
20e6290e 72#include "feature.h"
20e6290e 73#include "filesys.h"
ee3ea81d 74#include "fluids.h"
20e6290e
JB
75#include "fports.h"
76#include "gc.h"
77#include "gdbint.h"
78#include "gsubr.h"
79#include "hash.h"
80#include "hashtab.h"
44e8413c
MD
81#ifdef GUILE_ISELECT
82#include "iselect.h"
83#endif
20e6290e 84#include "ioext.h"
0e76bf66 85#include "keywords.h"
397daa3d 86#include "lang.h"
20e6290e
JB
87#include "list.h"
88#include "load.h"
27a69f93 89#include "macros.h"
20e6290e 90#include "mallocs.h"
345acb39 91#include "modules.h"
370312ae 92#include "net_db.h"
20e6290e 93#include "numbers.h"
0c32d76c 94#include "objects.h"
20e6290e
JB
95#include "objprop.h"
96#include "options.h"
97#include "pairs.h"
98#include "ports.h"
99#include "posix.h"
f255378e
JB
100#ifdef HAVE_REGCOMP
101#include "regex-posix.h"
102#endif
20e6290e
JB
103#include "print.h"
104#include "procprop.h"
105#include "procs.h"
106#include "ramap.h"
26ade7a2 107#include "random.h"
20e6290e
JB
108#include "read.h"
109#include "scmsigs.h"
964edde7 110#include "script.h"
20e6290e 111#include "simpos.h"
a8be22fe 112#include "smob.h"
20e6290e 113#include "socket.h"
26ade7a2 114#include "sort.h"
20e6290e
JB
115#include "srcprop.h"
116#include "stackchk.h"
0e44fcca 117#include "stacks.h"
20e6290e
JB
118#include "stime.h"
119#include "strings.h"
120#include "strop.h"
121#include "strorder.h"
122#include "strports.h"
123#include "struct.h"
124#include "symbols.h"
125#include "tag.h"
126#include "throw.h"
127#include "unif.h"
128#include "variable.h"
129#include "vectors.h"
130#include "version.h"
131#include "vports.h"
132#include "weaks.h"
f28b85f2 133#include "guardians.h"
20e6290e 134
a8be22fe
JB
135#include "init.h"
136
95b88819
GH
137#ifdef HAVE_STRING_H
138#include <string.h>
139#endif
140#ifdef HAVE_UNISTD_H
141#include <unistd.h>
142#endif
0f2d19dd 143\f
bdca1083 144/* Setting up the stack. */
0f2d19dd 145
1bbd0b84
GB
146static void
147restart_stack (void *base)
148{
149 scm_dynwinds = SCM_EOL;
150 SCM_DYNENV (scm_rootcont) = SCM_EOL;
151 SCM_THROW_VALUE (scm_rootcont) = SCM_EOL;
152#ifdef DEBUG_EXTENSIONS
153 SCM_DFRAME (scm_rootcont) = scm_last_debug_frame = 0;
154#endif
155 SCM_BASE (scm_rootcont) = base;
156 scm_continuation_stack_ptr = SCM_MAKINUM (0);
157}
1cdaaafb
JB
158
159static void
1bbd0b84 160start_stack (void *base)
0f2d19dd 161{
9ef3d0ee 162 SCM root;
0f2d19dd 163
9ef3d0ee
MD
164 root = scm_permanent_object (scm_make_root (SCM_UNDEFINED));
165 scm_set_root (SCM_ROOT_STATE (root));
0f2d19dd
JB
166 scm_stack_base = base;
167
0f2d19dd
JB
168 scm_exitval = SCM_BOOL_F; /* vestigial */
169
dc19d1d2 170 scm_top_level_lookup_closure_var = SCM_BOOL_F;
0f2d19dd
JB
171 scm_system_transformer = SCM_BOOL_F;
172
ee3ea81d
MV
173 scm_root->fluids = scm_make_initial_fluids ();
174
0f2d19dd
JB
175 /* Create an object to hold the root continuation.
176 */
177 SCM_NEWCELL (scm_rootcont);
1cdaaafb
JB
178 SCM_SETJMPBUF (scm_rootcont, scm_must_malloc ((long) sizeof (scm_contregs),
179 "continuation"));
898a256f 180 SCM_SETCAR (scm_rootcont, scm_tc7_contin);
4b5166ac 181 SCM_SEQ (scm_rootcont) = 0;
a4156763 182 /* The root continuation if further initialized by restart_stack. */
0f2d19dd
JB
183
184 /* Create the look-aside stack for variables that are shared between
185 * captured continuations.
186 */
a8741caa 187 scm_continuation_stack = scm_make_vector (SCM_MAKINUM (512), SCM_UNDEFINED);
a4156763 188 /* The continuation stack is further initialized by restart_stack. */
0f2d19dd 189
1cdaaafb
JB
190 /* The remainder of stack initialization is factored out to another
191 * function so that if this stack is ever exitted, it can be
a4156763
MD
192 * re-entered using restart_stack. */
193 restart_stack (base);
0f2d19dd
JB
194}
195
196
0f2d19dd
JB
197#if 0
198static char remsg[] = "remove\n#define ", addmsg[] = "add\n#define ";
199
1cc91f1b 200
0f2d19dd 201static void
1bbd0b84 202fixconfig (char *s1,char *s2,int s)
0f2d19dd
JB
203{
204 fputs (s1, stderr);
205 fputs (s2, stderr);
206 fputs ("\nin ", stderr);
207 fputs (s ? "setjump" : "scmfig", stderr);
208 fputs (".h and recompile scm\n", stderr);
209 exit (1);
210}
211
212
0f2d19dd 213static void
1bbd0b84 214check_config (void)
0f2d19dd
JB
215{
216 scm_sizet j;
217
218 j = HEAP_SEG_SIZE;
219 if (HEAP_SEG_SIZE != j)
220 fixconfig ("reduce", "size of HEAP_SEG_SIZE", 0);
221
222#ifdef SCM_SINGLES
223 if (sizeof (float) != sizeof (long))
224 fixconfig (remsg, "SCM_SINGLES", 0);
225#endif /* def SCM_SINGLES */
226
227
228#ifdef SCM_BIGDIG
229 if (2 * SCM_BITSPERDIG / SCM_CHAR_BIT > sizeof (long))
230 fixconfig (remsg, "SCM_BIGDIG", 0);
231#ifndef SCM_DIGSTOOBIG
232 if (SCM_DIGSPERLONG * sizeof (SCM_BIGDIG) > sizeof (long))
233 fixconfig (addmsg, "SCM_DIGSTOOBIG", 0);
234#endif
235#endif
236
237#ifdef SCM_STACK_GROWS_UP
238 if (((SCM_STACKITEM *) & j - stack_start_ptr) < 0)
239 fixconfig (remsg, "SCM_STACK_GROWS_UP", 1);
240#else
241 if ((stack_start_ptr - (SCM_STACKITEM *) & j) < 0)
242 fixconfig (addmsg, "SCM_STACK_GROWS_UP", 1);
243#endif
244}
245#endif
246
247
248\f
1cdaaafb
JB
249/* initializing standard and current I/O ports */
250
19b27fa2
GH
251typedef struct
252{
253 int fdes;
254 char *mode;
255 char *name;
256} stream_body_data;
257
258/* proc to be called in scope of exception handler stream_handler. */
ee149d03 259static SCM
19b27fa2 260stream_body (void *data)
ee149d03 261{
19b27fa2
GH
262 stream_body_data *body_data = (stream_body_data *) data;
263 SCM port = scm_fdes_to_port (body_data->fdes, body_data->mode,
264 scm_makfrom0str (body_data->name));
0a48b624 265
19b27fa2
GH
266 SCM_REVEALED (port) = 1;
267 return port;
268}
269
270/* exception handler for stream_body. */
271static SCM
272stream_handler (void *data, SCM tag, SCM throw_args)
273{
274 return SCM_BOOL_F;
275}
276
277/* Convert a file descriptor to a port, using scm_fdes_to_port.
278 - NAME is a C string, not a Guile string
279 - set the revealed count for FILE's file descriptor to 1, so
280 that fdes won't be closed when the port object is GC'd.
281 - catch exceptions: allow Guile to be able to start up even
282 if it has been handed bogus stdin/stdout/stderr. In this case
283 try to open a new stream on /dev/null. */
284static SCM
285scm_standard_stream_to_port (int fdes, char *mode, char *name)
286{
287 SCM port;
288 stream_body_data body_data;
289
290 body_data.fdes = fdes;
291 body_data.mode = mode;
292 body_data.name = name;
293 port = scm_internal_catch (SCM_BOOL_T, stream_body, &body_data,
294 stream_handler, NULL);
295 if (SCM_FALSEP (port))
0a48b624 296 {
19b27fa2
GH
297 /* FIXME: /dev/null portability. there's also *null-device* in
298 r4rs.scm. */
299 int null_fdes = open ("/dev/null",
300 (mode[0] == 'r') ? O_RDONLY : O_WRONLY);
301
302 body_data.fdes = null_fdes;
303 port = (null_fdes == -1) ? SCM_BOOL_F
304 : scm_internal_catch (SCM_BOOL_T, stream_body, &body_data,
305 stream_handler, NULL);
306 /* if the standard fdes was not allocated, reset the revealed count
307 on the grounds that the user doesn't know what it is. */
308 if (SCM_NFALSEP (port) && null_fdes != fdes)
309 SCM_REVEALED (port) = 0;
310 /* if port is still #f, we'll just leave it like that and
311 an error will be raised on the first attempt to use it. */
312 }
313 return port;
ee149d03
JB
314}
315
316/* Create standard ports from stdin, stdout, and stderr. */
1cdaaafb
JB
317static void
318scm_init_standard_ports ()
319{
94754080
JB
320 /* From the SCSH manual:
321
322 It can be useful to turn I/O buffering off in some cases, for
323 example when an I/O stream is to be shared by multiple
324 subprocesses. For this reason, scsh allocates an unbuffered port
325 for file descriptor 0 at start-up time.
326
327 Because shells frequently share stdin with subprocesses, if the
328 shell does buffered reads, it might ``steal'' input intended for
329 a subprocess. For this reason, all shells, including sh, csh,
330 and scsh, read stdin unbuffered. Applications that can tolerate
331 buffered input on stdin can reset \ex{(current-input-port)} to
332 block buffering for higher performance. */
ee149d03 333
bc45012d 334 scm_def_inp
ee149d03
JB
335 = scm_standard_stream_to_port (0,
336 isatty (0) ? "r0" : "r",
1cdaaafb 337 "standard input");
ee149d03 338 scm_def_outp = scm_standard_stream_to_port (1,
720e8692 339 isatty (1) ? "w0" : "w",
ee149d03
JB
340 "standard output");
341 scm_def_errp = scm_standard_stream_to_port (2,
342 isatty (2) ? "w0" : "w",
343 "standard error");
1cdaaafb
JB
344
345 scm_cur_inp = scm_def_inp;
346 scm_cur_outp = scm_def_outp;
347 scm_cur_errp = scm_def_errp;
1a64191e 348 scm_cur_loadp = SCM_BOOL_F;
1cdaaafb
JB
349}
350
351
352\f
bdca1083
JB
353/* Loading the startup Scheme files. */
354
355/* The boot code "ice-9/boot-9" is only loaded by scm_boot_guile when
356 this is false. The unexec code uses this, to keep ice_9 from being
357 loaded into dumped guile executables. */
358int scm_ice_9_already_loaded = 0;
359
360void
361scm_load_startup_files ()
362{
363 /* We want a path only containing directories from GUILE_LOAD_PATH,
364 SCM_SITE_DIR and SCM_LIBRARY_DIR when searching for the site init
365 file, so we do this before loading Ice-9. */
366 SCM init_path = scm_sys_search_load_path (scm_makfrom0str ("init.scm"));
367
368 /* Load Ice-9. */
369 if (!scm_ice_9_already_loaded)
b505860d
MD
370 {
371 scm_primitive_load_path (scm_makfrom0str ("ice-9/boot-9.scm"));
bdca1083 372
b505860d
MD
373 /* Load the init.scm file. */
374 if (SCM_NFALSEP (init_path))
375 scm_primitive_load (init_path);
376
377 scm_post_boot_init_modules ();
378 }
bdca1083
JB
379}
380
381
382\f
383/* The main init code. */
384
0f2d19dd
JB
385#ifdef _UNICOS
386typedef int setjmp_type;
387#else
388typedef long setjmp_type;
389#endif
390
816a6f06
JB
391/* All the data needed to invoke the main function. */
392struct main_func_closure
393{
394 /* the function to call */
1bbd0b84 395 void (*main_func)(void *closure, int argc, char **argv);
816a6f06
JB
396 void *closure; /* dummy data to pass it */
397 int argc;
398 char **argv; /* the argument list it should receive */
399};
400
401
1bbd0b84
GB
402static void scm_boot_guile_1(SCM_STACKITEM *base, struct main_func_closure *closure);
403static SCM invoke_main_func(void *body_data);
1cdaaafb
JB
404
405
406/* Fire up the Guile Scheme interpreter.
407
408 Call MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV. MAIN_FUNC
409 should do all the work of the program (initializing other packages,
410 reading user input, etc.) before returning. When MAIN_FUNC
411 returns, call exit (0); this function never returns. If you want
412 some other exit value, MAIN_FUNC may call exit itself.
0f2d19dd 413
1cdaaafb
JB
414 scm_boot_guile arranges for program-arguments to return the strings
415 given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should
416 call scm_set_program_arguments with the final list, so Scheme code
417 will know which arguments have been processed.
c275ddc7 418
816a6f06
JB
419 scm_boot_guile establishes a catch-all catch handler which prints
420 an error message and exits the process. This means that Guile
421 exits in a coherent way when system errors occur and the user isn't
422 prepared to handle it. If the user doesn't like this behavior,
423 they can establish their own universal catcher to shadow this one.
424
1cdaaafb
JB
425 Why must the caller do all the real work from MAIN_FUNC? The
426 garbage collector assumes that all local variables of type SCM will
427 be above scm_boot_guile's stack frame on the stack. If you try to
428 manipulate SCM values after this function returns, it's the luck of
429 the draw whether the GC will be able to find the objects you
430 allocate. So, scm_boot_guile function exits, rather than
431 returning, to discourage people from making that mistake. */
432
433
434void
6e8d25a6 435scm_boot_guile (int argc, char ** argv, void (*main_func) (), void *closure)
c275ddc7 436{
1cdaaafb
JB
437 /* The garbage collector uses the address of this variable as one
438 end of the stack, and the address of one of its own local
439 variables as the other end. */
c275ddc7 440 SCM_STACKITEM dummy;
816a6f06 441 struct main_func_closure c;
c275ddc7 442
816a6f06
JB
443 c.main_func = main_func;
444 c.closure = closure;
445 c.argc = argc;
446 c.argv = argv;
447
1595aa56 448 scm_boot_guile_1 (&dummy, &c);
c275ddc7
JB
449}
450
816a6f06 451
70122cd3
MV
452/* Record here whether SCM_BOOT_GUILE_1 has already been called. This
453 variable is now here and not inside SCM_BOOT_GUILE_1 so that one
454 can tweak it. This is necessary for unexec to work. (Hey, "1-live"
455 is the name of a local radiostation...) */
456
457int scm_boot_guile_1_live = 0;
1cdaaafb
JB
458
459static void
6e8d25a6 460scm_boot_guile_1 (SCM_STACKITEM *base, struct main_func_closure *closure)
0f2d19dd
JB
461{
462 static int initialized = 0;
70122cd3 463 /* static int live = 0; */
0f2d19dd 464 setjmp_type setjmp_val;
0f2d19dd 465
1cdaaafb 466 /* This function is not re-entrant. */
70122cd3 467 if (scm_boot_guile_1_live)
1cdaaafb 468 abort ();
0f2d19dd 469
70122cd3 470 scm_boot_guile_1_live = 1;
0f2d19dd
JB
471
472 scm_ints_disabled = 1;
473 scm_block_gc = 1;
474
475 if (initialized)
476 {
a4156763 477 restart_stack (base);
0f2d19dd
JB
478 }
479 else
480 {
481 scm_ports_prehistory ();
482 scm_smob_prehistory ();
483 scm_tables_prehistory ();
484 scm_init_storage (0);
9de33deb 485 scm_init_subr_table ();
9ef3d0ee
MD
486 scm_init_root ();
487#ifdef USE_THREADS
a239e35b 488 scm_init_threads (base);
9ef3d0ee 489#endif
a4156763 490 start_stack (base);
0f2d19dd
JB
491 scm_init_gsubr ();
492 scm_init_feature ();
493 scm_init_alist ();
0f2d19dd
JB
494 scm_init_arbiters ();
495 scm_init_async ();
496 scm_init_boolean ();
497 scm_init_chars ();
498 scm_init_continuations ();
499 scm_init_dynwind ();
500 scm_init_eq ();
501 scm_init_error ();
ee3ea81d 502 scm_init_fluids ();
a5d6d578 503 scm_init_backtrace (); /* Requires fluids */
0f2d19dd 504 scm_init_fports ();
0f2d19dd 505 scm_init_gc ();
68cd9c71 506 scm_init_gdbint ();
0f2d19dd
JB
507 scm_init_hash ();
508 scm_init_hashtab ();
44e8413c
MD
509#ifdef GUILE_ISELECT
510 scm_init_iselect ();
511#endif
0f2d19dd 512 scm_init_ioext ();
0e76bf66 513 scm_init_keywords ();
0f2d19dd 514 scm_init_list ();
27a69f93 515 scm_init_macros ();
0f2d19dd 516 scm_init_mallocs ();
345acb39 517 scm_init_modules ();
0f2d19dd
JB
518 scm_init_numbers ();
519 scm_init_objprop ();
4e1caa79 520 scm_init_options ();
0f2d19dd
JB
521 scm_init_pairs ();
522 scm_init_ports ();
52cfc69b
GH
523#ifdef HAVE_POSIX
524 scm_init_filesys ();
0f2d19dd 525 scm_init_posix ();
52cfc69b 526#endif
f255378e
JB
527#ifdef HAVE_REGCOMP
528 scm_init_regex_posix ();
529#endif
0f2d19dd
JB
530 scm_init_procs ();
531 scm_init_procprop ();
0f2d19dd 532 scm_init_scmsigs ();
52cfc69b
GH
533#ifdef HAVE_NETWORKING
534 scm_init_net_db ();
0f2d19dd 535 scm_init_socket ();
52cfc69b 536#endif
26ade7a2 537 scm_init_sort ();
4e1caa79
MD
538#ifdef DEBUG_EXTENSIONS
539 scm_init_srcprop ();
540#endif
0f2d19dd 541 scm_init_stackchk ();
7439c0b9 542 scm_init_struct (); /* Requires struct */
0e44fcca 543 scm_init_stacks ();
0f2d19dd 544 scm_init_strports ();
0f2d19dd
JB
545 scm_init_symbols ();
546 scm_init_tag ();
547 scm_init_load ();
0c32d76c 548 scm_init_objects (); /* Requires struct */
90b826c9 549 scm_init_print (); /* Requires struct */
0f2d19dd 550 scm_init_read ();
0f2d19dd
JB
551 scm_init_stime ();
552 scm_init_strings ();
553 scm_init_strorder ();
0f2d19dd
JB
554 scm_init_strop ();
555 scm_init_throw ();
556 scm_init_variable ();
557 scm_init_vectors ();
9d7e1edf 558 scm_init_version ();
0f2d19dd 559 scm_init_weaks ();
f28b85f2 560 scm_init_guardian ();
0f2d19dd
JB
561 scm_init_vports ();
562 scm_init_eval ();
27a69f93 563 scm_init_evalext ();
0e44fcca
MD
564#ifdef DEBUG_EXTENSIONS
565 scm_init_debug (); /* Requires macro smobs */
566#endif
26ade7a2 567 scm_init_random ();
afe5177e
GH
568#ifdef HAVE_ARRAYS
569 scm_init_ramap ();
0f2d19dd 570 scm_init_unif ();
afe5177e 571#endif
0f2d19dd 572 scm_init_simpos ();
24f93c27 573 scm_init_load_path ();
1cdaaafb 574 scm_init_standard_ports ();
70122cd3 575 scm_init_dynamic_linking ();
397daa3d 576 scm_init_lang ();
0487b82f 577 scm_init_script ();
0f2d19dd
JB
578 initialized = 1;
579 }
580
581 scm_block_gc = 0; /* permit the gc to run */
582 /* ints still disabled */
583
1cdaaafb
JB
584#ifdef STACK_CHECKING
585 scm_stack_checking_enabled_p = SCM_STACK_CHECKING_P;
586#endif
0f2d19dd 587
1cdaaafb
JB
588 setjmp_val = setjmp (SCM_JMPBUF (scm_rootcont));
589 if (!setjmp_val)
590 {
816a6f06 591 scm_set_program_arguments (closure->argc, closure->argv, 0);
f64056d1
JB
592 scm_internal_lazy_catch (SCM_BOOL_T, invoke_main_func, closure,
593 scm_handle_by_message, 0);
1cdaaafb 594 }
0f2d19dd 595
1cdaaafb 596 scm_restore_signals ();
0f2d19dd 597
1cdaaafb
JB
598 /* This tick gives any pending
599 * asyncs a chance to run. This must be done after
600 * the call to scm_restore_signals.
601 */
602 SCM_ASYNC_TICK;
603
604 /* If the caller doesn't want this, they should return from
605 main_func themselves. */
606 exit (0);
0f2d19dd 607}
816a6f06
JB
608
609
610static SCM
6e8d25a6 611invoke_main_func (void *body_data)
816a6f06
JB
612{
613 struct main_func_closure *closure = (struct main_func_closure *) body_data;
614
bdca1083
JB
615 scm_load_startup_files ();
616
816a6f06
JB
617 (*closure->main_func) (closure->closure, closure->argc, closure->argv);
618
619 /* never reached */
620 return SCM_UNDEFINED;
621}